nginx.conf 621 B

123456789101112131415161718192021222324
  1. user nginx;
  2. worker_processes 1;
  3. error_log /data/logs/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 /data/logs/nginx/access.log main;
  15. client_max_body_size 200m;
  16. sendfile on;
  17. keepalive_timeout 65;
  18. include conf.d/*.conf;
  19. }