21 lines
381 B
Nginx Configuration File
21 lines
381 B
Nginx Configuration File
#user nobody;
|
|
worker_processes 4;
|
|
|
|
error_log /dev/stdout debug;
|
|
#error_log logs/error.log notice;
|
|
#error_log logs/error.log info;
|
|
#pid run/nginx.pid;
|
|
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
http {
|
|
include mime.types;
|
|
include /etc/nginx/sites-enabled/*;
|
|
default_type application/octet-stream;
|
|
keepalive_timeout 65;
|
|
sendfile on;
|
|
}
|
|
daemon off;
|