Guest User

Untitled

a guest
May 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. user www-data;
  2.  
  3. worker_processes 2;
  4. events {
  5. worker_connections 256;
  6. }
  7.  
  8. http {
  9. include mime.types;
  10. default_type application/octet-stream;
  11.  
  12. sendfile on;
  13. tcp_nodelay on;
  14. tcp_nopush off;
  15. keepalive_timeout 30;
  16. client_body_timeout 10;
  17. client_header_timeout 10;
  18. send_timeout 10;
  19. client_max_body_size 8M;
  20.  
  21.  
  22.  
  23. set_real_ip_from 127.0.0.1;
  24. real_ip_header X-Forwarded-For;
  25.  
  26. gzip on;
  27. gzip_disable "MSIE [1-6].(?!.*SV1)";
  28. gzip_vary on;
  29. gzip_comp_level 2;
  30. gzip_proxied any;
  31. gzip_buffers 16 8k;
  32.  
  33. include /etc/nginx/conf.d/*.conf;
  34. include /etc/nginx/sites-enabled/*;
  35. }
Add Comment
Please, Sign In to add comment