Advertisement
monochromec

nginx.conf

Feb 27th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. access_log /var/log/nginx/access.log;
  2. error_log /var/log/nginx/error.log debug;
  3.  
  4. ##
  5. # Gzip Settings
  6. ##
  7.  
  8. gzip on;
  9. gzip_disable "msie6";
  10.  
  11. # gzip_vary on;
  12. # gzip_proxied any;
  13. # gzip_comp_level 6;
  14. # gzip_buffers 16 8k;
  15. # gzip_http_version 1.1;
  16. # gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;
  17.  
  18. ##
  19. # Virtual Host Configs
  20. ##
  21.  
  22. include /etc/nginx/conf.d/*.conf;
  23. include /etc/nginx/sites-enabled/*;
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement