20 lines
682 B
Plaintext
20 lines
682 B
Plaintext
user nginx www-data;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
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;
|
|
}
|