File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 88FROM jlesage/baseimage:alpine-3.8-v2.4.1
99
1010# Define software versions.
11- ARG NGINX_PROXY_MANAGER_VERSION=2.0.3
11+ ARG NGINX_PROXY_MANAGER_VERSION=2.0.5
1212
1313# Define software download URLs.
1414ARG NGINX_PROXY_MANAGER_URL=https://github.com/jc21/nginx-proxy-manager/archive/${NGINX_PROXY_MANAGER_VERSION}.tar.gz
6969 mkdir nginx-proxy-manager && \
7070 curl -# -L ${NGINX_PROXY_MANAGER_URL} | tar xz --strip 1 -C nginx-proxy-manager && \
7171
72- # Patch.
73- curl -# -L https://github.com/jlesage/nginx-proxy-manager/commit/20fd18565.patch | patch -d nginx-proxy-manager -p1 || true && \
74-
7572 # Build Nginx Proxy Manager.
7673 echo "Building Nginx Proxy Manager..." && \
7774 cp -r nginx-proxy-manager /app && \
@@ -116,6 +113,8 @@ RUN \
116113 # Make sure nginx loads the stream module.
117114 sed-patch '/daemon off;/a load_module /usr/lib/nginx/modules/ngx_stream_module.so;' /etc/nginx/nginx.conf && \
118115
116+ sed-patch 's|include conf.d/include/ssl-ciphers.conf;|ssl_ciphers aNULL;|' /etc/nginx/conf.d/default.conf && \
117+
119118 # Redirect `/data' to '/config'.
120119 ln -s /config /data && \
121120
You can’t perform that action at this time.
0 commit comments