Releases: JonasAlfredsson/docker-nginx-certbot
Releases · JonasAlfredsson/docker-nginx-certbot
v5.0.1
v5.0.0
- We now run
nginx -t
before reloading Nginx. This will hopefully provide better info on config errors without crashing the container.- The reason for this being a major version is because technically we alter core container behavior where previous errors would result in a restart.
- PR by @stefansundin
v4.3.0
- Parent image is now using Python 3.11 which implements PEP 668, so we have to allow set the bulid argument
PIP_BREAK_SYSTEM_PACKAGES=1
so it is possible to install PIP packages again.
v4.2.1
- Require all certificate files to have a size greater than zero.
v4.2.0
v4.1.0
- Install Bash 5.2.15 from Debian Bookworm.
- Workaround for this Bash bug which we also had in the Alpine image.
- Not using a "backport" repository is not recommended, but right now the only way.
- Added timestamps to the log output we produce.
- This is technically a breaking change if someone parses our logs, but I will ignore that.
v4.0.0
- New approach to implementing IPv6 support for the HTTP-01 challenge.
- Deleted the dedicated server in
certbot.conf
- Deleted the dedicated server in
This change should be transparent for anyone not having a custom
certbot.conf
file, but is technically making a breaking change for someone, thus a major revision bump.
v3.3.1
- Revert previous feature after it apparently breaking some setups.
v3.3.0
- Have the server in
certbot.conf
listen on IPv6 as well.- PR by @Meptl.
v3.2.2
- Small syntax fixes recommended by shellcheck.
- PR by @ericstengard.