You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Conf in nginx to filter http verbs should be like:
location /application {
proxy_pass http://<host>;
limit_except POST {
deny all;
}
}
## Below three pages should be served with GET & POST
location ~ ^/application/(RegisterServet|pd|LoginServlet)$ {
proxy_pass http://<host>;
}
The text was updated successfully, but these errors were encountered:
asalic
changed the title
Allow internet access to users to controlled endpoints
Allow users to access the internet (controlled endpoints)
Jun 7, 2024
Use nginx as a reverse proxy with a CONNECT plugin for TLS/SSL forwarding (like https://github.com/chobits/ngx_http_proxy_connect_module) and allowing only get requests to public repos such as docker, pip, maven etc.
Conf in nginx to filter http verbs should be like:
The text was updated successfully, but these errors were encountered: