Releases: JonasAlfredsson/docker-nginx-certbot
Releases · JonasAlfredsson/docker-nginx-certbot
v3.2.1
- Small syntax fixes recommended by shellcheck.
- PR by @ericstengard.
v3.2.0
v3.1.3
- Recover and retry in case of failed
dhparam
creation.- PR by @staticfloat.
v3.1.2
v3.1.1
v3.1.0
v3.0.1: Actually use ECDSA certificates by default
- Actually use ECDSA certificates by default.
- I was little bit to eager to deploy the latest version so this change was forgotten.
v3.0.0
- Add support for DNS-01 challenges.
- Check out the list of all currently supported authenticators.
- This also means it is now possible to request wildcard certificates!
- PR by XaF.
- Make it possible to define which authenticator to use on a certificate basis.
- Like with ECDSA/RSA, you can add the authenicator's name in the
cert_name
to override the default. - PR by XaF.
- Like with ECDSA/RSA, you can add the authenicator's name in the
- Make it possible to use same
cert_name
across multiple config files.- The scripts will remember all domain names associated with the cert name.
- This means you can now use as many config files as you want and have them all point to a single certificate.
- Add BATS.
- A lot unit tests for the Bash functions we use in the
util.sh
file. - Also add it as a GitHub action.
- A huge thank you to XaF for providing the foundation for this.
- A lot unit tests for the Bash functions we use in the
- Add ability to override found
server_name
.- By adding a comment on the
server_name
line the script will now use that instead. - This enables you to easily group domains under a common wildcard certificate (example config).
- By adding a comment on the
- Any server name beginning with '
~
' will be ignored.- This character means that the server name is a regex, and we cannot use it when requesting certificates.
- Use ECDSA certificates by default.
- You now have to explicitly set
USE_ECDSA=0
to disable this.
- You now have to explicitly set
- We aren't actually introducing any breaking changes, but such a large change deserves a major release.
- Update documentation.
- Update examples.
v2.4.1
- Fix missing quotes around variable.
- PR by @LucianDavies.
- Changed package mirror used by Alpine images. More info in issue #70.
- Added more documentation.
- Updated the
docker-compose
examples a bit.
v2.4.0
- Create a script that can sign certificates with the help of a local certificate authortiy.
- It is now possible to work completely offline.
- We can now create certificates for
localhost
.
- Restructure and add a lot of documentation.
openssl
is now a symlink tolibressl
in the Alpine images.- This is done to simplify the rest of the scripts since the arguments are the same.