no-http-sites-enabled.conf 707 B

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