SH05 路由
This commit is contained in:
parent
6f987832ad
commit
d23384412f
|
@ -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/; # 注意末尾的/
|
||||||
|
|
Loading…
Reference in New Issue