15 lines
200 B
Nginx Configuration File
15 lines
200 B
Nginx Configuration File
worker_processes 4;
|
|
|
|
events {
|
|
worker_connections 1024;
|
|
}
|
|
|
|
http {
|
|
access_log off;
|
|
error_log off;
|
|
|
|
include mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
include /etc/nginx/http.d/*;
|
|
}
|