Files
AFC-Demo/deploy/nginx/nginx.conf
T
2025-10-23 12:22:27 +02:00

29 lines
706 B
Nginx Configuration File

user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log warn;
pid /run/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;
error_log /dev/stderr warn;
sendfile on;
keepalive_timeout 65;
# Server Blöcke sind NICHT hier!
# Stattdessen in:
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/http.d/*.conf;
}