16 lines
911 B
Plaintext
16 lines
911 B
Plaintext
daemon off;
|
|
worker_processes 1;
|
|
error_log stderr debug;
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
access_log /dev/stdout;
|
|
sendfile on;
|
|
keepalive_timeout 65;
|
|
|