Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2013
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. user www-data;
  2. worker_processes 1;
  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 65;
  22. tcp_nodelay on;
  23.  
  24. gzip on;
  25. gzip_disable "MSIE [1-6]\.(?!.*SV1)";
  26.  
  27. include /etc/nginx/conf.d/*.conf;
  28. include /etc/nginx/sites-enabled/*;
  29. }
  30.  
  31. # mail {
  32. # # See sample authentication script at:
  33. # # http://wiki.nginx.org/NginxImapAuthenticateWithApachePhpScript
  34. #
  35. # # auth_http localhost/auth.php;
  36. # # pop3_capabilities "TOP" "USER";
  37. # # imap_capabilities "IMAP4rev1" "UIDPLUS";
  38. #
  39. # server {
  40. # listen localhost:110;
  41. # protocol pop3;
  42. # proxy on;
  43. # }
  44. #
  45. # server {
  46. # listen localhost:143;
  47. # protocol imap;
  48. # proxy on;
  49. # }
  50. # }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement