LetsEncrypt client library for ACME v2 written in PHP.
This library is inspired by yourivw/LEClient, completely rewritten and enhanced with some new features:
- Support for Composer autoload (including separated Namespaces)
- Automatic renewal process
- Managed HTTP authentication process
- Response caching mechanism
- Prevents blocking while waiting for server results
- Optional certificate feature "OCSP Must-Staple"
- Optional set a preferred chain
The aim of this client is to make an easy-to-use and integrated solution to create a LetsEncrypt-issued SSL/TLS certificate with PHP.
You have the possibility to use the HTTP authentication: You need to be able to redirect specific requests (see below)
You have also the possibility to use DNS authentication: You need to be able to set dynamic DNS configurations.
Wildcard certificates can only be requested by using the dns authentication.
Tested with LetsEncrypt staging and production servers.
This library supports it to set a preferred chain in Order::setPreferredChain($issuerCN))
.
If the preferred chain is not set or set to IdenTrust’s chain, this library will try to use the IdenTrust’s chain as long as possible. Please see: https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/
The minimum required PHP version is 7.3.
This client also depends on cURL and OpenSSL.
Install via composer:
composer require fbett/le_acme2
Also have a look at the LetsEncrypt documentation for more information and documentation on LetsEncrypt and ACME.
- Create a working directory. Warning: This directory will also include private keys, so i suggest to place this directory somewhere not in the root document path of the web server. Additionally this directory should be protected to be read from other web server users.
mkdir /etc/ssl/le-storage/
chown root:root /etc/ssl/le-storage
chmod 0600 /etc/ssl/le-storage
- (HTTP authorization only) Create a directory for the acme challenges. It must be reachable by http/https.
mkdir /var/www/acme-challenges
- (HTTP authorization only) Redirect specific requests to your acme-challenges directory
Example apache virtual host configuration:
<VirtualHost ...>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule \.well-known/acme-challenge/(.*)$ https://your-domain.com/path/to/acme-challenges/$1 [R=302,L]
</IfModule>
</VirtualHost>
- (DNS authorization only) Set the DNS configuration
If DNSWriter::write(...)
is called, set the DNS configuration like described in:
https://letsencrypt.org/docs/challenge-types/#dns-01-challenge
(By adding the digest as a TXT record for the subdomain '_acme-challenge'.)
- Use the certificate bundle, if the certificate is issued:
if($order->isCertificateBundleAvailable()) {
$bundle = $order->getCertificateBundle();
$pathToPrivateKey = $bundle->path . $bundle->private;
$pathToCertificate = $bundle->path . $bundle->certificate;
$pathToIntermediate = $bundle->path . $bundle->intermediate;
$order->enableAutoRenewal(); // If the date of expiration is closer than thirty days, the order will automatically start the renewal process.
}
If a certificate is renewed, the path will also change.
My integrated workflow is the following:
- User enables SSL to a specific domain in my control panel
- The cronjob of this control panel will detect these changes and tries to create or get an order like in the sample.
- The cronjob will fetch the information within the certificate bundle, if the certificate bundle is ready (mostly on the second run for challenge type HTTP and on the third run for challenge type DNS)
- The cronjob will also build the Apache virtual host files and will restart the Apache2 service, if the new config file is different.
Please take a look on the Samples for a full sample workflow.
This project is licensed under the MIT License - see the LICENSE.md file for details.