Files
openresty-gateway/conf/nginx.conf
2026-05-18 16:22:55 +08:00

28 lines
479 B
Nginx Configuration File

worker_processes auto;
events {
worker_connections 4096;
}
stream {
include /usr/local/openresty/nginx/conf/stream.d/*.conf;
}
http {
lua_shared_dict limit 10m;
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
proxy_connect_timeout 60s;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
client_max_body_size 200M;
include /usr/local/openresty/nginx/conf/conf.d/*.conf;
}