28 lines
418 B
Nginx Configuration File
Executable file
28 lines
418 B
Nginx Configuration File
Executable file
|
|
user nginx;
|
|
worker_processes auto;
|
|
|
|
error_log /dev/null crit;
|
|
|
|
pid /var/run/nginx.pid;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
|
|
sendfile on;
|
|
#tcp_nopush on;
|
|
|
|
keepalive_timeout 65;
|
|
|
|
log_format status-only '$status';
|
|
access_log /dev/null status-only;
|
|
|
|
#gzip on;
|
|
include /etc/nginx/conf.d/*.conf;
|
|
}
|