Guest User

Untitled

a guest
Oct 17th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. limit_req zone=one burst=5 nodelay;
  2.  
  3. limit_req_zone $binary_remote_addr zone=mylimit:10m rate=10r/s;
  4.  
  5. location /login/ {
  6. limit_req zone=mylimit burst=20;
  7. ...
  8. }
  9.  
  10. location /login/ {
  11. limit_req zone=mylimit burst=20 nodelay;
  12. ...
  13. }
Add Comment
Please, Sign In to add comment