From 195fc1bdc3dd9643c865823797812f6e7cdaaa45 Mon Sep 17 00:00:00 2001 From: Aqr-K <95741669+Aqr-K@users.noreply.github.com> Date: Sun, 25 May 2025 23:47:23 +0800 Subject: [PATCH] =?UTF-8?q?fix(sh):=20=E5=BC=95=E5=8F=B7=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index e2220801..1136062a 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -174,8 +174,8 @@ if [ "${ENABLE_SSL}" = "true" ]; then server_name ${SSL_DOMAIN:-moviepilot}; # SSL证书路径 - ssl_certificate "${CONFIG_DIR}"/certs/latest/fullchain.pem; - ssl_certificate_key "${CONFIG_DIR}"/certs/latest/privkey.pem; + ssl_certificate ${CONFIG_DIR}/certs/latest/fullchain.pem; + ssl_certificate_key ${CONFIG_DIR}/certs/latest/privkey.pem; # SSL安全配置 ssl_protocols TLSv1.2 TLSv1.3;