Advertisement
Guest User

Untitled

a guest
Sep 11th, 2014
429
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. [root@via3h nginx]# nano nginx.conf
  2. GNU nano 2.0.9 File: nginx.conf
  3.  
  4. access_log /var/log/nginx/access.log main;
  5.  
  6. sendfile on;
  7. #tcp_nopush on;
  8.  
  9. #keepalive_timeout 0;
  10. keepalive_timeout 65;
  11.  
  12. gzip on;
  13. gzip_disable "MSIE [1-6]\.(?!.*SV1)";
  14.  
  15. # Load config files from the /etc/nginx/conf.d directory
  16. # The default server is in conf.d/default.conf
  17. include /etc/nginx/conf.d/*.conf;
  18. include /etc/nginx/sites-enabled/*;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement