This commit is contained in:
Darren 2024-12-11 10:10:45 +08:00 committed by GitHub
parent 8783f0dedc
commit 3771aff40f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -1,11 +1,11 @@
# modify time: 202412101512, you can modify here to trigger Docker Build action
# modify time: 2024121110, you can modify here to trigger Docker Build action
# from Dockerfile: https://github.com/NginxProxyManager/nginx-proxy-manager/blob/develop/docker/Dockerfile
# from image: https://hub.docker.com/r/jc21/nginx-proxy-manager
FROM jc21/nginx-proxy-manager:2.11.3
LABEL maintainer="Websoft9<help@websoft9.com>"
LABEL version="2.11.3"
LABEL version="2.11.3-rc9"
COPY README.md /data/nginx/README.md
RUN mkdir /data/nginx/custom

View File

@ -16,6 +16,11 @@ server {
rewrite ^/locales/(.*) /w9deployment/locales/$1 break;
}
location = / {
return 200 "Welcome to our site!";
add_header Content-Type text/plain;
}
location / {
# Proxy!
include conf.d/include/proxy.conf;