2
0

feat: support load application yaml

This commit is contained in:
zhangsz
2025-01-17 11:13:41 +08:00
parent e682b8e7e6
commit 2bb8cdfa50
10 changed files with 239 additions and 31 deletions

View File

@@ -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;