nginx

csp

sso

monitoring

Rate limiting

Utilize the rate-limiting module to limit the rate of requests:
http {  limit_req_zone $binary_remote_addr  zone=limitbyaddr:10m rate=3r/s;
 limit_req_status 429;
 # ...
 server {  # ...
 limit_req zone=limitbyaddr;
 # ...
 } 
 }

Rewrite redirection

The proxy_redirect instruction allows to rewrite the proxied redirection.

This only works for http redirection (not html or javascript one)

Rewrite proxied html content

The sub_filter instruction allows to rewrite the html content

React ?

This page was last modified: