kelunik/aerys-acme
Composer 安装命令:
composer require kelunik/aerys-acme
包简介
Encrypting TLS hosts automatically using ACME to issue certificates.
README 文档
README
ACME is a protocol to automate certificate issuance and renewal. Aerys provides a feature to encrypt hosts automatically using ACME.
installation
composer require kelunik/aerys-acme:dev-master
usage
<?php use Aerys\Acme\AcmeHost; use Aerys\Host; const LETS_ENCRYPT_AGREEMENT = "https://letsencrypt.org/documents/LE-SA-v1.0.1-July-27-2015.pdf"; const LETS_ENCRYPT_STAGING = "https://acme-staging.api.letsencrypt.org/directory"; const LETS_ENCRYPT_BETA = "https://acme-v01.api.letsencrypt.org/directory"; $https = (new Host) ->expose("*", 443) ->name("example.com"); // Currently we need a redirect, because the spec requires // the initial HTTP challenge to use HTTP instead of HTTPS. // If you don't want to redirect all traffic, just redirect // everything starting with "/.well-known/acme-challenge/". $http = (new Host) ->expose("*", 80) ->name("example.com") ->redirect("https://example.com"); // this will issue a test certificate, see below return (new AcmeHost($https, __DIR__ . "/ssl")) ->acceptAgreement(LETS_ENCRYPT_AGREEMENT) ->encrypt(LETS_ENCRYPT_STAGING, ["mailto:me@example.com"]); // if your domain is already whitelisted for Let's Encrypt's closed beta, // use the right server to obtain a real certificate // return (new AcmeHost($https, __DIR__ . "/ssl")) // ->acceptAgreement(LETS_ENCRYPT_AGREEMENT) // ->encrypt(LETS_ENCRYPT_BETA, ["mailto:me@example.com"]);
kelunik/aerys-acme 适用场景与选型建议
kelunik/aerys-acme 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5 次下载、GitHub Stars 达 12, 最近一次更新时间为 2015 年 11 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 kelunik/aerys-acme 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 kelunik/aerys-acme 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 13
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-11-11