Compare commits

..

2 Commits

Author SHA1 Message Date
yidl 905c4e491a Merge branch 'stage' of http://111.230.114.47:3000/yidongliang/gateway into stage
# Conflicts:
#	nginx.conf.gateway
2025-06-26 23:47:14 +08:00
yidl 98c6875bb2 sav 2025-06-26 23:39:24 +08:00
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,5 @@
error_log /var/log/nginx/error.log warn;
error_log /var/log/nginx/error.log error;
pid /var/run/nginx.pid;
events {
@ -82,7 +83,7 @@ http {
# 1. 认证中心 (IdentityServer4) 路由
# 匹配所有认证相关的路径
location ~ ^/(auth|Login|connect|Account|\\.well-known)/ {
location ~ ^/(connect|Account|\\.well-known)/ {
proxy_pass http://auth_server;
}