Skip to content

Commit 23adcca

Browse files
authored
v5.0.14 (#116)
Minor updates * Using latest base image * Renaming NGINX_WWW
1 parent cebb73f commit 23adcca

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/nginx:nginx1.22-4.0.12
1+
FROM bfren/nginx:nginx1.22-4.0.14
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-nginx-proxy"
44

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.13
1+
5.0.14

overlay/etc/bf/init.d/20-env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ bf-env "PROXY_SITES" "/sites"
2828

2929
PROXY_ACME_CHALLENGE=.well-known/acme-challenge
3030
bf-env "PROXY_ACME_CHALLENGE" "${PROXY_ACME_CHALLENGE}"
31-
bf-env "PROXY_WWW_ACME_CHALLENGE" "${NGINX_WWW}/${PROXY_ACME_CHALLENGE}"
31+
bf-env "PROXY_WWW_ACME_CHALLENGE" "${NGINX_ROOT}/${PROXY_ACME_CHALLENGE}"
3232

3333
if [ "${PROXY_GETSSL_DEBUG-}" = "1" ] ; then
3434
bf-env "PROXY_GETSSL_FLAGS" "-d -U"

overlay/etc/bf/templates/nginx-acme-challenge.part.esh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# but all other requests can be blocked from outside the local network, for example)
33
location ^~ /<%= "${PROXY_ACME_CHALLENGE}" %> {
44
allow all;
5-
root <%= "${NGINX_WWW}" %>;
5+
root <%= "${NGINX_ROOT}" %>;
66
}

overlay/etc/bf/templates/nginx-proxy.conf.esh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ server {
5252
include helpers/nginx-ignore-favicon.conf;
5353
include helpers/nginx-static-files.conf;
5454

55-
# serve pages in <%= "${NGINX_WWW}" %> (map volume to override default pages)
56-
root <%= "${NGINX_WWW}" %>;
55+
# serve pages in <%= "${NGINX_ROOT}" %> (map volume to override default pages)
56+
root <%= "${NGINX_ROOT}" %>;
5757

5858
<%+ ./nginx-ssl-certs.part.esh %>
5959
}

0 commit comments

Comments
 (0)