Compare commits

..

No commits in common. "905c4e491a62215cd8787d75ca1caf8570dce978" and "4f495add3d9613fa9199830f3fda16ee53acdf71" have entirely different histories.

1 changed files with 2 additions and 3 deletions

View File

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