Advertisement
Guest User

Untitled

a guest
Jul 10th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. user amorris;
  2. worker_processes auto;
  3. #pid /run/nginx.pid;
  4.  
  5.  
  6. events {
  7.     worker_connections  1024;
  8. }
  9.  
  10.  
  11. http {
  12.     sendfile on;
  13.     tcp_nopush on;
  14.     keepalive_timeout 65;
  15.     types_hash_max_size 2048;
  16.  
  17.     include /etc/nginx/mime.types;
  18.     default_type  application/octet-stream;
  19.  
  20.     access_log /var/log/nginx/access.log;
  21.     error_log /var/log/nginx/error.log;
  22.  
  23.     gzip on;
  24.  
  25.     include /etc/nginx/sites-enabled/*;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement