Browse Source

🔒 预防gateway安全问题

test
smallchill 3 years ago
parent
commit
16a3d33337
  1. 4
      script/docker/app/nginx/api/nginx.conf

4
script/docker/app/nginx/api/nginx.conf

@ -50,6 +50,10 @@ http {
proxy_buffering off;
proxy_pass http://gateway;
}
if ($request_uri ~ "/actuator") {
return 403;
}
}
server {

Loading…
Cancel
Save