Skip to content

Commit 49b7121

Browse files
committed
Small updates based on PR feedback
1 parent 564e0d8 commit 49b7121

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ The architectures supported by this image are:
7373
* After setup, navigate to `https://yourdomain.url` to access the default homepage (http access through port 80 is disabled by default, you can enable it by editing the default site config at `/config/nginx/site-confs/default.conf`).
7474
* Certs are checked nightly and if expiration is within 30 days, renewal is attempted. If your cert is about to expire in less than 30 days, check the logs under `/config/log/letsencrypt` to see why the renewals have been failing. It is recommended to input your e-mail in docker parameters so you receive expiration notices from Let's Encrypt in those circumstances.
7575

76+
### Using A Private ACME Server
77+
78+
If you are getting certificates from a private ACME server instead of Let's Encrypt or ZeroSSL, you will need to configure your ACME server URL and CA trust.
79+
80+
* Set `CERTPROVIDER` to `custom`
81+
* Set `ACMEURL` to the URL of your ACME server
82+
* Set `ACMECABUNDLE` to a base64-wrapped PEM file containing your trusted root CA certificate bundle. (Yes, this ends up being double-encoded.)
83+
7684
### Security and password protection
7785

7886
* The container detects changes to url and subdomains, revokes existing certs and generates new ones during start.

readme-vars.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,8 @@ cap_add_param_vars:
5050
opt_param_usage_include_env: true
5151
opt_param_env_vars:
5252
- { env_var: "SUBDOMAINS", env_value: "www,", desc: "Subdomains you'd like the cert to cover (comma separated, no spaces) ie. `www,ftp,cloud`. For a wildcard cert, set this _exactly_ to `wildcard` (wildcard cert is available via `dns` and `duckdns` validation only)" }
53-
- { env_var: "CERTPROVIDER", env_value: "", desc: "Optionally define the cert provider. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Set to `custom` to use a custom ACME server. Defaults to Let's Encrypt unless `ACMESERVER` is set. " }
53+
- { env_var: "CERTPROVIDER", env_value: "", desc: "Optionally define a cert provider other than Let's Encrypt. Set to `zerossl` for ZeroSSL certs (requires existing [ZeroSSL account](https://app.zerossl.com/signup) and the e-mail address entered in `EMAIL` env var). Set to `custom` to use a custom ACME server. If using `custom`, you must also set `ACMEURL` (the URL of the ACME server to use) and `ACMECABUNDLE` (a base64-encoded PEM file containing a root CA bundle to trust). Defaults to Let's Encrypt." }
5454
- { env_var: "DNSPLUGIN", env_value: "cloudflare", desc: "Required if `VALIDATION` is set to `dns`. Options are `acmedns`,`aliyun`, `azure`, `cloudflare`, `cloudxns`, `cpanel`, `desec`, `digitalocean`, `directadmin`, `dnsimple`, `dnsmadeeasy`, `dnspod`, `do`, `domeneshop`, `dynu`, `gandi`, `gehirn`, `google`, `he`, `hetzner`, `infomaniak`, `inwx`, `ionos`, `linode`, `loopia`, `luadns`, `netcup`, `njalla`, `nsone`, `ovh`, `rfc2136`, `route53`, `sakuracloud`, `standalone`, `transip` and `vultr`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`." }
55-
- { env_var: "ACMESERVER", env_value: "", desc: "The URL of a custom ACME server to use." }
56-
- { env_var: "ACMECABUNDLE", env_value: "", desc: "A base64-encoded PEM file containing a CA bundle to trust, for use with an internal ACME CA. Required for a custom ACME CA." }
5755
- { env_var: "PROPAGATION", env_value: "", desc: "Optionally override (in seconds) the default propagation time for the dns plugins." }
5856
- { env_var: "DUCKDNSTOKEN", env_value: "", desc: "Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org" }
5957
- { env_var: "EMAIL", env_value: "", desc: "Optional e-mail address used for cert expiration notifications (Required for ZeroSSL)." }

root/etc/cont-init.d/50-certbot

+9-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ EXTRA_DOMAINS=${EXTRA_DOMAINS}\\n\
1111
ONLY_SUBDOMAINS=${ONLY_SUBDOMAINS}\\n\
1212
VALIDATION=${VALIDATION}\\n\
1313
CERTPROVIDER=${CERTPROVIDER}\\n\
14-
ACMESERVER=${ACMESERVER}\\n\
14+
ACMEURL=${ACMEURL}\\n\
1515
ACMECABUNDLE=${ACMECABUNDLE}\\n\
1616
DNSPLUGIN=${DNSPLUGIN}\\n\
1717
EMAIL=${EMAIL}\\n\
@@ -41,7 +41,7 @@ if [ -f "/config/donoteditthisfile.conf" ]; then
4141
mv /config/donoteditthisfile.conf /config/.donoteditthisfile.conf
4242
fi
4343
if [ ! -f "/config/.donoteditthisfile.conf" ]; then
44-
echo -e "ORIGURL=\"$URL\" ORIGSUBDOMAINS=\"$SUBDOMAINS\" ORIGONLY_SUBDOMAINS=\"$ONLY_SUBDOMAINS\" ORIGEXTRA_DOMAINS=\"$EXTRA_DOMAINS\" ORIGVALIDATION=\"$VALIDATION\" ORIGDNSPLUGIN=\"$DNSPLUGIN\" ORIGPROPAGATION=\"$PROPAGATION\" ORIGSTAGING=\"$STAGING\" ORIGDUCKDNSTOKEN=\"$DUCKDNSTOKEN\" ORIGCERTPROVIDER=\"$CERTPROVIDER\" ORIGACMESERVER=\"$ACMESERVER\" ORIGACMECABUNDLE=\"$ACMECABUNDLE\" ORIGEMAIL=\"$EMAIL\"" > /config/.donoteditthisfile.conf
44+
echo -e "ORIGURL=\"$URL\" ORIGSUBDOMAINS=\"$SUBDOMAINS\" ORIGONLY_SUBDOMAINS=\"$ONLY_SUBDOMAINS\" ORIGEXTRA_DOMAINS=\"$EXTRA_DOMAINS\" ORIGVALIDATION=\"$VALIDATION\" ORIGDNSPLUGIN=\"$DNSPLUGIN\" ORIGPROPAGATION=\"$PROPAGATION\" ORIGSTAGING=\"$STAGING\" ORIGDUCKDNSTOKEN=\"$DUCKDNSTOKEN\" ORIGCERTPROVIDER=\"$CERTPROVIDER\" ORIGACMEURL=\"$ACMEURL\" ORIGACMECABUNDLE=\"$ACMECABUNDLE\" ORIGEMAIL=\"$EMAIL\"" > /config/.donoteditthisfile.conf
4545
echo "Created .donoteditthisfile.conf"
4646
fi
4747

@@ -56,12 +56,13 @@ if [ -z "$VALIDATION" ]; then
5656
fi
5757

5858
# Choose the relevant CA server
59-
if [ -n "$ACMESERVER" ]; then
59+
if [ -n "$ACMEURL" ]; then
6060
if [ -z "$EMAIL" ]; then
61-
echo 'A custom $ACMESERVER URL requires an account $EMAIL to be supplied'
61+
echo 'A custom $ACMEURL requires an account $EMAIL to be supplied'
6262
sleep infinity
6363
fi
64-
echo "Using $ACMESERVER as the cert provider; registering cert with $EMAIL"
64+
echo "Using $ACMEURL as the cert provider; registering cert with $EMAIL"
65+
ACMESERVER=$ACMEURL
6566
elif [ "$CERTPROVIDER" = "zerossl" ]; then
6667
ACMESERVER="https://acme.zerossl.com/v2/DV90"
6768
if [ "$STAGING" = "true" ]; then
@@ -84,6 +85,9 @@ fi
8485

8586
if [ -n "$ACMECABUNDLE" ]; then
8687
echo "$ACMECABUNDLE" | base64 -d - > /config/cabundle.pem
88+
fi
89+
90+
if [ -f "/config/cabundle.pem" ]; then
8791
export REQUESTS_CA_BUNDLE="/config/cabundle.pem"
8892
fi
8993

0 commit comments

Comments
 (0)