Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

47 строки
1.1 KiB

  1. # For more information on configuration, see:
  2. # * Official English Documentation: http://nginx.org/en/docs/
  3. # * Official Russian Documentation: http://nginx.org/ru/docs/
  4. user nginx;
  5. worker_processes 1;
  6. error_log /var/log/nginx/error.log;
  7. #error_log /var/log/nginx/error.log notice;
  8. #error_log /var/log/nginx/error.log info;
  9. pid /run/nginx.pid;
  10. events {
  11. worker_connections 1024;
  12. }
  13. http {
  14. include /etc/nginx/mime.types;
  15. default_type application/octet-stream;
  16. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  17. '$status $body_bytes_sent "$http_referer" '
  18. '"$http_user_agent" "$http_x_forwarded_for"';
  19. access_log /var/log/nginx/access.log main;
  20. sendfile on;
  21. #tcp_nopush on;
  22. #keepalive_timeout 0;
  23. keepalive_timeout 65;
  24. server_names_hash_bucket_size 64;
  25. #gzip on;
  26. index index.html index.htm;
  27. # Load modular configuration files from the /etc/nginx/conf.d directory.
  28. # See http://nginx.org/en/docs/ngx_core_module.html#include
  29. # for more information.
  30. include /etc/nginx/conf.d/*.conf;
  31. }