From 178bd1f2f671082428fa9e8739db979b3aed90b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 28 Jan 2020 15:17:26 +0000 Subject: [PATCH] Bot Updating Documentation --- images/docker-letsencrypt.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/docker-letsencrypt.md b/images/docker-letsencrypt.md index 9f6393a56f..88d6f6ad8a 100644 --- a/images/docker-letsencrypt.md +++ b/images/docker-letsencrypt.md @@ -116,7 +116,7 @@ Docker images are configured using parameters passed at runtime (such as those a | `TZ=Europe/London` | Specify a timezone to use EG Europe/London. | | `URL=yourdomain.url` | Top url you have control over (`customdomain.com` if you own it, or `customsubdomain.ddnsprovider.com` if dynamic dns). | | `SUBDOMAINS=www,` | 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) | -| `VALIDATION=http` | Letsencrypt validation method to use, options are `http`, `tls-sni`, `dns` or `duckdns` (`dns` method also requires `DNSPLUGIN` variable set) (`duckdns` method requires `DUCKDNSTOKEN` variable set, and the `SUBDOMAINS` variable must be either empty or set to `wildcard`). | +| `VALIDATION=http` | Letsencrypt validation method to use, options are `http`, `dns` or `duckdns` (`dns` method also requires `DNSPLUGIN` variable set) (`duckdns` method requires `DUCKDNSTOKEN` variable set, and the `SUBDOMAINS` variable must be either empty or set to `wildcard`). | | `DNSPLUGIN=cloudflare` | Required if `VALIDATION` is set to `dns`. Options are `cloudflare`, `cloudxns`, `cpanel`, `digitalocean`, `dnsimple`, `dnsmadeeasy`, `domeneshop`, `gandi`, `google`, `inwx`, `linode`, `luadns`, `nsone`, `ovh`, `rfc2136`, `route53` and `transip`. Also need to enter the credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf`. | | `DUCKDNSTOKEN=` | Required if `VALIDATION` is set to `duckdns`. Retrieve your token from https://www.duckdns.org | | `EMAIL=` | Optional e-mail address used for cert expiration notifications. | @@ -151,7 +151,6 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel ### Validation and initial setup * Before running this container, make sure that the url and subdomains are properly forwarded to this container's host, and that port 443 (and/or 80) is not being used by another service on the host (NAS gui, another webserver, etc.). * For `http` validation, port 80 on the internet side of the router should be forwarded to this container's port 80 -* For `tls-sni` validation, port 443 on the internet side of the router should be forwarded to this container's port 443 * For `dns` validation, make sure to enter your credentials into the corresponding ini (or json for some plugins) file under `/config/dns-conf` * Cloudflare provides free accounts for managing dns and is very easy to use with this image. Make sure that it is set up for "dns only" instead of "dns + proxy" * Google dns plugin is meant to be used with "Google Cloud DNS", a paid enterprise product, and not for "Google Domains DNS" @@ -207,6 +206,7 @@ This will *ask* Google et al not to index and list your site. Be careful with th ## Versions +* **28.01.20:** - Deprecate tls-sni validation method, remove from docs. * **27.01.20:** - Add support for cpanel dns validation. * **10.01.20:** - Add support for domeneshop dns validation. * **07.01.20:** - Update ciphers from Mozilla ssl-config recommendations.