Advertisement
Guest User

Untitled

a guest
Dec 7th, 2012
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. user nginx nginx;
  2. worker_processes 1;
  3.  
  4.  
  5. pid /var/run/nginx.pid;
  6.  
  7. events {
  8. worker_connections 2048;
  9. }
  10.  
  11. http {
  12. include mime.types;
  13. default_type application/octet-stream;
  14. client_max_body_size 64M;
  15. sendfile on;
  16. tcp_nopush on;
  17.  
  18. keepalive_timeout 3;
  19.  
  20. gzip on;
  21. gzip_comp_level 2;
  22. gzip_proxied any;
  23. gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
  24.  
  25. server_tokens off;
  26.  
  27. include /etc/nginx/conf.d/*;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement