26 lines
424 B
Nginx Configuration File
26 lines
424 B
Nginx Configuration File
|
|
# load_module /usr/local/libexec/nginx/ngx_http_lua_module.so;
|
||
|
|
worker_processes 1;
|
||
|
|
|
||
|
|
events {
|
||
|
|
worker_connections 1024;
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
http {
|
||
|
|
include mime.types;
|
||
|
|
default_type application/octet-stream;
|
||
|
|
|
||
|
|
error_log /var/log/nginx/error.log;
|
||
|
|
|
||
|
|
autoindex on;
|
||
|
|
|
||
|
|
sendfile on;
|
||
|
|
keepalive_timeout 65;
|
||
|
|
|
||
|
|
client_max_body_size 20m;
|
||
|
|
client_body_timeout 120s;
|
||
|
|
|
||
|
|
gzip on;
|
||
|
|
|
||
|
|
include /usr/local/etc/nginx/sites/*.conf;
|
||
|
|
}
|