# keine 'user' Direktive im non-root Betrieb worker_processes auto; error_log /dev/stderr warn; pid /tmp/nginx.pid; events { worker_connections 1024; } http { include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /dev/stdout main; sendfile on; keepalive_timeout 65; server_tokens off; # Temp/Cache-Pfade, die 'nginx' gehören client_body_temp_path /var/lib/nginx/tmp/client_body 1 2; proxy_temp_path /var/lib/nginx/tmp/proxy 1 2; fastcgi_temp_path /var/lib/nginx/tmp/fastcgi 1 2; scgi_temp_path /var/lib/nginx/tmp/scgi 1 2; uwsgi_temp_path /var/lib/nginx/tmp/uwsgi 1 2; include /etc/nginx/conf.d/*.conf; }