SH05 路由

This commit is contained in:
yidl 2025-08-29 21:30:11 +08:00
parent 6f987832ad
commit d23384412f
1 changed files with 7 additions and 1 deletions

View File

@ -270,7 +270,13 @@ http {
proxy_ssl_verify off; proxy_ssl_verify off;
proxy_set_header Authorization $http_authorization; proxy_set_header Authorization $http_authorization;
} }
# API路由
location /SH05/ {
proxy_pass https://healthy_api/SH05/;
proxy_ssl_server_name on;
proxy_ssl_verify off;
proxy_set_header Authorization $http_authorization;
}
# UI前端路由 # UI前端路由
location /{ location /{
proxy_pass http://healthy_ui/; # 注意末尾的/ proxy_pass http://healthy_ui/; # 注意末尾的/