Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions nginx.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@ RUN files/prebuild/build-frontend.sh



# when upgrading, look for upstream changes to redirector.conf
# also, confirm setup-odk.sh strips out HTTP-01 ACME challenge location
FROM jonasal/nginx-certbot:6.1.0
# When upgrading:
#
# 1. Use full-length tag, including nginx version. See:
# * https://github.com/JonasAlfredsson/docker-nginx-certbot/blob/master/docs/dockerhub_tags.md
# * https://hub.docker.com/r/jonasal/nginx-certbot/tags
# 2. Look for upstream changes to redirector.conf
# 3. Confirm setup-odk.sh strips out HTTP-01 ACME challenge location.
FROM jonasal/nginx-certbot:6.1.0-nginx1.29.7
Copy link
Copy Markdown
Member

@lognaturel lognaturel Jun 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Servers that have rebuilt recently would have been running -nginx1.31.1. I think we should go straight to that tag since some production users already have it.

Whoops, I see 6.2.0 straddles nginx 1.29 and 1.31 but 6.1.0 does not. So we could stay on 6.1.0 for now and this would be the correct pin. Then we could look at actually upgrading later based on what the latest version is at that time.


EXPOSE 80
EXPOSE 443
Expand Down
Loading