Unverified Commit 0ea67f88 authored by Vir's avatar Vir Committed by GitHub
Browse files

Update nginx.conf

parent bd9dafe0
worker_processes auto;
worker_rlimit_nofile 100000;
events { events {
worker_connections 1024; worker_connections 4000;
} }
http { http {
...@@ -7,9 +11,18 @@ http { ...@@ -7,9 +11,18 @@ http {
include mime.types; include mime.types;
default_type application/octet-stream; default_type application/octet-stream;
sendfile on; sendfile on;
tcp_nopush on;
tcp_nodelay on;
server_tokens off; server_tokens off;
client_max_body_size 100M; client_max_body_size 100M;
access_log off;
reset_timedout_connection on;
client_body_timeout 10;
send_timeout 2;
keepalive_timeout 30;
include resty-http.conf; include resty-http.conf;
server { server {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment