Guest User

Untitled

a guest
Jun 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. user www-data www-data;
  2. worker_processes 64;
  3.  
  4. error_log /var/log/nginx/error.log;
  5.  
  6. pid /var/run/nginx.pid;
  7.  
  8. events {
  9. worker_connections 512;
  10. }
  11.  
  12.  
  13. http {
  14. include mime.types;
  15. default_type application/octet-stream;
  16.  
  17. server_names_hash_bucket_size 128;
  18.  
  19. log_format main '$host $remote_addr [$time_local] $status "$request" $body_bytes_sent "$http_referer" "$http_user_agent"';
  20. access_log /var/log/nginx/access.log main;
  21.  
  22.  
  23. sendfile on;
  24. tcp_nopush on;
  25. tcp_nodelay on;
  26.  
  27. #keepalive_timeout 65;
  28.  
  29. include vhosts.d/*.conf;
  30.  
  31. }
Add Comment
Please, Sign In to add comment