Advertisement
Guest User

Untitled

a guest
Jun 12th, 2012
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. user www-data;
  2. worker_processes 2;
  3.  
  4. error_log /var/log/nginx/error.log;
  5. pid /var/run/nginx.pid;
  6.  
  7. events {
  8. worker_connections 1024;
  9. # multi_accept 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. #tcp_nopush on;
  19.  
  20. #keepalive_timeout 0;
  21. keepalive_timeout 5;
  22. tcp_nodelay on;
  23.  
  24. gzip on;
  25. gzip_disable "MSIE [1-6]\.(?!.*SV1)";
  26. server_tokens off;
  27.  
  28. include /etc/nginx/conf.d/*.conf;
  29. include /etc/nginx/sites-enabled/*;
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement