Guest User

Untitled

a guest
Nov 12th, 2014
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1.  
  2. #user html;
  3. worker_processes 1;
  4.  
  5. #error_log logs/error.log;
  6. #error_log logs/error.log notice;
  7. #error_log logs/error.log info;
  8.  
  9. #pid logs/nginx.pid;
  10.  
  11.  
  12. events {
  13. worker_connections 1024;
  14. }
  15.  
  16.  
  17. http {
  18. index index.html index.htm index.php;
  19. include mime.types;
  20. geoip_country /usr/share/GeoIP/GeoIP.dat;
  21. geoip_city /usr/share/GeoIP/GeoLiteCity.dat;
  22. default_type application/octet-stream;
  23. client_max_body_size 1000m;
  24.  
  25. #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  26. # '$status $body_bytes_sent "$http_referer" '
  27. # '"$http_user_agent" "$http_x_forwarded_for"';
  28.  
  29. #access_log logs/access.log main;
  30.  
  31. sendfile on;
  32. #tcp_nopush on;
  33.  
  34. #keepalive_timeout 0;
  35. keepalive_timeout 65;
  36.  
  37. #gzip on;
  38.  
  39. include /etc/nginx/sites-enabled/*;
  40. }
Advertisement
Add Comment
Please, Sign In to add comment