This commit is contained in:
yidl 2025-08-17 14:32:36 +08:00
commit 67d7822159
1 changed files with 10 additions and 0 deletions

View File

@ -218,5 +218,15 @@ http {
proxy_ssl_verify off; proxy_ssl_verify off;
proxy_set_header Authorization $http_authorization; # 传递 Authorization 头 proxy_set_header Authorization $http_authorization; # 传递 Authorization 头
} }
location ~* ^/LMGUpload/(.*)$ {
proxy_pass https://lmg_api;
proxy_ssl_server_name on;
proxy_ssl_session_reuse off;
proxy_ssl_verify off;
proxy_set_header Authorization $http_authorization; # 传递 Authorization 头
}
} }
} }