Advertisement
Guest User

Untitled

a guest
Feb 14th, 2013
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. user www-data;
  2. worker_processes 4;
  3. pid /var/run/nginx.pid;
  4.  
  5. events {
  6. worker_connections 768;
  7. }
  8.  
  9. http {
  10. sendfile on;
  11. tcp_nopush on;
  12. tcp_nodelay on;
  13. keepalive_timeout 65;
  14. types_hash_max_size 2048;
  15.  
  16. include /etc/nginx/mime.types;
  17. default_type application/octet-stream;
  18.  
  19. access_log /var/log/nginx/access.log;
  20. error_log /var/log/nginx/error.log;
  21.  
  22. gzip on;
  23. gzip_disable "msie6";
  24.  
  25. include /etc/nginx/conf.d/*.conf; #<-- Please note that this dir is empty
  26.  
  27. include /etc/nginx/sites-enabled/site.example.com.conf; #<-- will provide config in seperate paste
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement