20 lines
424 B
Nginx Configuration File
20 lines
424 B
Nginx Configuration File
|
# /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;
|
||
|
}
|