Advertisement
Guest User

nginx.conf

a guest
Feb 3rd, 2013
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. user www-data;
  2. worker_processes 8;
  3. pid /var/run/nginx.pid;
  4.  
  5. events {
  6. worker_connections 2048;
  7. use epoll;
  8. }
  9.  
  10. http {
  11. sendfile on;
  12. tcp_nopush on;
  13. tcp_nodelay on;
  14. keepalive_timeout 30;
  15. types_hash_max_size 2048;
  16. include /etc/nginx/mime.types;
  17. default_type application/octet-stream;
  18. access_log /var/log/nginx/access.log;
  19. error_log /var/log/nginx/error.log;
  20. include /etc/nginx/conf.d/*.conf;
  21. include /etc/nginx/sites-enabled/*;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement