12 lines
219 B
Plaintext
12 lines
219 B
Plaintext
|
|
pid /var/run/nginx/nginx.pid;
|
||
|
|
worker_processes auto;
|
||
|
|
|
||
|
|
events {
|
||
|
|
worker_connections 1024;
|
||
|
|
}
|
||
|
|
|
||
|
|
http {
|
||
|
|
include /etc/nginx/mime.types;
|
||
|
|
default_type application/octet-stream;
|
||
|
|
include /etc/nginx/conf.d/*.conf;
|
||
|
|
}
|