Guest User

Untitled

a guest
Sep 25th, 2018
100
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 4;
  3. worker_cpu_affinity 0001 0010 0100 1000;
  4. error_log /var/log/nginx/error.log;
  5. pid /var/run/nginx.pid;
  6.  
  7. events {
  8. worker_connections 2048;
  9. }
  10.  
  11. http {
  12. include /etc/nginx/mime.types;
  13. access_log /var/log/nginx/access.log;
  14.  
  15. sendfile on;
  16. tcp_nopush on;
  17. keepalive_timeout 5;
  18. tcp_nodelay on;
  19. server_tokens off;
  20.  
  21. gzip on;
  22. gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;
  23. gzip_disable "MSIE [1-6]\.(?!.*SV1)";
  24.  
  25. include /etc/nginx/conf.d/*.conf;
  26. include /etc/nginx/sites-enabled/*;
  27. }
Add Comment
Please, Sign In to add comment