docker-dotclear/etc/nginx.conf

21 lines
425 B
Nginx Configuration File
Raw Normal View History

2024-11-24 12:55:58 +00:00
# docker-dotclear:*
# /etc/nginx/nginx.conf
# Nginx configuration
user www;
daemon off;
worker_processes auto;
error_log /dev/stderr notice;
pid /var/run/nginx/nginx.pid;
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 3000;
include /var/www/dotclear/servers/*.conf;
2024-11-11 16:56:16 +00:00
}