Advertisement
Guest User

Untitled

a guest
Jan 9th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.21 KB | None | 0 0
  1. events {}
  2.  
  3. http {
  4.     limit_conn_zone $binary_remote_addr zone=addr:10m;
  5.  
  6.     server {
  7.         root C:\Users\Winexcel\Desktop\blog;
  8.  
  9.         location / {
  10.             limit_conn addr 1;
  11.         }
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement