From 133e7578b9ee69bb352a510d5b4119a4f4172264 Mon Sep 17 00:00:00 2001 From: Sebastian <39752847+sebastian0619@users.noreply.github.com> Date: Sun, 31 Aug 2025 17:17:26 +0800 Subject: [PATCH 1/2] Update NGINX SSL port configuration --- docker/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index ff26d8b9..1cb897c0 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -183,8 +183,8 @@ if [ "${ENABLE_SSL}" = "true" ]; then include /etc/nginx/mime.types; default_type application/octet-stream; - listen 443 ssl; - listen [::]:443 ssl; + listen ${SSL_NGINX_PORT:-3002} ssl; + listen [::]:${SSL_NGINX_PORT:-3002} ssl; server_name ${SSL_DOMAIN:-moviepilot}; # SSL证书路径 From 4098018ee92207eab04998d66f6fabd86b5ae2cb Mon Sep 17 00:00:00 2001 From: jxxghp Date: Sun, 31 Aug 2025 19:04:24 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20entrypoint.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- docker/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 1cb897c0..d26ddee8 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -183,8 +183,8 @@ if [ "${ENABLE_SSL}" = "true" ]; then include /etc/nginx/mime.types; default_type application/octet-stream; - listen ${SSL_NGINX_PORT:-3002} ssl; - listen [::]:${SSL_NGINX_PORT:-3002} ssl; + listen ${SSL_NGINX_PORT:-443} ssl; + listen [::]:${SSL_NGINX_PORT:-443} ssl; server_name ${SSL_DOMAIN:-moviepilot}; # SSL证书路径