Advertisement
Guest User

Untitled

a guest
Oct 25th, 2020
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. server {
  3. listen 127.0.0.1:80 backlog=65535 fastopen=65535 bind reuseport so_keepalive=180:5:3 default_server;
  4. listen 10.201.50.131:80 backlog=65535 fastopen=65535 bind reuseport so_keepalive=180:5:3 default_server;
  5. server_name "" 127.0.0.1 10.201.50.131;
  6. location /status {
  7. access_log off;
  8. return 200;
  9. }
  10. location = /64.dat {
  11. root /var/www/ab;
  12. access_log off;
  13. }
  14. # Everything is a 404
  15. location / {
  16. return 404;
  17. }
  18. # You may need this to prevent return 404 recursion.
  19. location = /404.html {
  20. internal;
  21. }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement