From d4b42ab3be9b94eb63a64b80a76a4fdd5fbc0ab3 Mon Sep 17 00:00:00 2001 From: yidl Date: Sat, 28 Jun 2025 23:20:38 +0800 Subject: [PATCH] save --- nginx.conf.gateway | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nginx.conf.gateway b/nginx.conf.gateway index 599ec31..6784610 100644 --- a/nginx.conf.gateway +++ b/nginx.conf.gateway @@ -44,7 +44,6 @@ http { # Lmg 系统 API upstream lmg_api { server lmg-api:19903; - proxy_ssl_verify off; # 关闭证书验证 } # Sys 系统 UI @@ -115,6 +114,7 @@ http { location /api/lmg/ { # 将 /api/lmg/path -> http://lmg_api/api/lmg/path proxy_pass http://lmg_api; + proxy_ssl_verify off; # 关闭证书验证 } # 4. Lmg UI 路由 @@ -122,6 +122,7 @@ http { location /lmg/ { # 将 /lmg/path -> http://lmg_ui/path proxy_pass http://lmg_ui/; + proxy_ssl_verify off; # 关闭证书验证 } # 5. Sys UI 和根路径路由 @@ -131,6 +132,7 @@ http { # 根路径 / 直接访问 sys_ui # 将 /path -> http://sys_ui/path proxy_pass http://sys_ui; + proxy_ssl_verify off; # 关闭证书验证 } # 6. OAuth 回调地址路由 @@ -138,6 +140,7 @@ http { location = /Callback { # 将 /Callback -> http://sys_ui/Callback proxy_pass http://sys_ui; + proxy_ssl_verify off; # 关闭证书验证 } } }