26 lines
870 B
Plaintext
26 lines
870 B
Plaintext
user nginx www-data;
|
|
|
|
worker_processes auto;
|
|
worker_cpu_affinity auto;
|
|
|
|
# Load modules
|
|
load_module "modules/ngx_http_zip_module.so";
|
|
load_module "modules/ngx_http_fancyindex_module.so";
|
|
load_module "modules/ngx_http_dav_ext_module.so";
|
|
|
|
events {}
|
|
|
|
http {
|
|
access_log syslog:server=127.0.0.1;
|
|
error_log syslog:server=127.0.0.1;
|
|
gzip on;
|
|
gzip_vary on;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
absolute_redirect off;
|
|
keepalive_timeout 300;
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
include module/*.conf;
|
|
}
|