First commit
This commit is contained in:
commit
fdaacfc5a6
19 changed files with 919 additions and 0 deletions
26
nginx/nginx.conf
Normal file
26
nginx/nginx.conf
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue