Advertisement
Guest User

domet

a guest
May 10th, 2012
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 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. }
  10.  
  11. http {
  12. include /etc/nginx/mime.types;
  13. default_type application/octet-stream;
  14. server_names_hash_bucket_size 64;
  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.  
  25. gzip on;
  26. gzip_proxied any;
  27. gzip_min_length 1100;
  28. gzip_http_version 1.0;
  29. gzip_buffers 4 8k;
  30. gzip_comp_level 9;
  31. gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
  32.  
  33.  
  34. include /etc/nginx/conf.d/*.conf;
  35. include /etc/nginx/sites-enabled/*;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement