Guest User

Untitled

a guest
Jun 20th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. user deployer staff;
  2. worker_processes 4;
  3.  
  4. error_log /var/log/nginx/error.log;
  5. pid /var/run/nginx.pid;
  6.  
  7. events {
  8. worker_connections 1024;
  9. accept_mutex on;
  10. }
  11.  
  12. http {
  13. include /etc/nginx/mime.types;
  14.  
  15. access_log /var/log/nginx/access.log;
  16.  
  17. sendfile on;
  18.  
  19. tcp_nopush on; # off may be better for *some* Comet/long-poll stuff
  20. tcp_nodelay off; # on may be better for some Comet/long-poll stuff
  21.  
  22. gzip on;
  23. gzip_http_version 1.0;
  24. gzip_proxied any;
  25. gzip_min_length 500;
  26. gzip_disable "MSIE [1-6]\.";
  27. gzip_types text/plain text/html text/xml text/css text/comma-separated-values text/javascript application/x-javascript application/atom+xml;
  28.  
  29. include /etc/nginx/conf.d/*.conf;
  30. include /etc/nginx/sites-enabled/*;
  31. }
Add Comment
Please, Sign In to add comment