diff --git a/docker/rootfs/etc/nginx/conf.d/default.conf b/docker/rootfs/etc/nginx/conf.d/default.conf index b3f61ebc..fd3c4222 100644 --- a/docker/rootfs/etc/nginx/conf.d/default.conf +++ b/docker/rootfs/etc/nginx/conf.d/default.conf @@ -1,11 +1,11 @@ # "You are not configured" page, which is the default if another default doesn't exist server { - listen 80; - listen [::]:80; + listen 8080; + listen [::]:8080; set $forward_scheme "http"; set $server "127.0.0.1"; - set $port "80"; + set $port "8080"; server_name localhost-nginx-proxy-manager; access_log /data/logs/fallback_http_access.log standard; @@ -20,14 +20,14 @@ server { } } -# First 443 Host, which is the default if another default doesn't exist +# First 8443 Host, which is the default if another default doesn't exist server { - listen 443 ssl; - listen [::]:443 ssl; + listen 8443 ssl; + listen [::]:8443 ssl; set $forward_scheme "https"; set $server "127.0.0.1"; - set $port "443"; + set $port "8443"; server_name localhost; access_log /data/logs/fallback_http_access.log standard;