Files
webservice/nginx/nginx.conf
groot 63db4b0606
All checks were successful
release-tag / release-image (push) Successful in 1m17s
nginx/nginx.conf aktualisiert
2025-05-03 23:34:16 +00:00

17 lines
520 B
Nginx Configuration File

error_log /dev/stderr warn;
events {
worker_connections 1024;
}
http {
default_type application/octet-stream;
gzip on;
include /etc/nginx/mime.types;
include /etc/nginx/conf.d/*.conf;
keepalive_timeout 65;
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 /var/log/nginx/access.log main;
sendfile on;
}
pid /tmp/nginx.pid;
# user appuser;
worker_processes auto;