feat: support load application yaml
This commit is contained in:
@@ -42,6 +42,20 @@ http {
|
||||
proxy_pass http://192.168.13.128:8080/;
|
||||
}
|
||||
|
||||
location /file {
|
||||
proxy_pass http://192.168.13.128:9201/;
|
||||
proxy_cache_bypass $http_upgrade;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header Connection "upgrade";
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Port $server_port;
|
||||
proxy_set_header Content-Type $content_type;
|
||||
proxy_set_header Content-Length $http_content_length;
|
||||
}
|
||||
|
||||
# 避免actuator暴露
|
||||
if ($request_uri ~ "/actuator") {
|
||||
return 403;
|
||||
|
||||
Reference in New Issue
Block a user