Installation for S&D
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
786 B

2 years ago
  1. user nginx;
  2. worker_processes 1;
  3. error_log /var/log/nginx/error.log warn;
  4. pid /var/run/nginx.pid;
  5. events {
  6. worker_connections 1024;
  7. }
  8. http {
  9. include /etc/nginx/mime.types;
  10. default_type application/octet-stream;
  11. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  12. '$status $body_bytes_sent "$http_referer" '
  13. '"$http_user_agent" "$http_x_forwarded_for"';
  14. access_log /var/log/nginx/access.log main;
  15. fastcgi_buffers 8 16k;
  16. fastcgi_buffer_size 32k;
  17. fastcgi_connect_timeout 90;
  18. fastcgi_send_timeout 90;
  19. fastcgi_read_timeout 90;
  20. sendfile on;
  21. #tcp_nopush on;
  22. keepalive_timeout 65;
  23. #gzip on;
  24. include /etc/nginx/conf.d/*.conf;
  25. }