13 lines
185 B
Nginx Configuration File
13 lines
185 B
Nginx Configuration File
![]() |
#user nobody;
|
||
|
worker_processes 1;
|
||
|
|
||
|
events {
|
||
|
worker_connections 1024;
|
||
|
}
|
||
|
|
||
|
http {
|
||
|
include mime.types;
|
||
|
include conf.d/*.conf;
|
||
|
default_type application/octet-stream;
|
||
|
}
|