ocngx / nginx /nginx.conf
tanbushi's picture
update
09af5b8
Raw
History Blame
355 Bytes
events {
worker_connections 1024;
}
http {
include /usr/local/openresty/nginx/conf/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
# Lua 模块配置
lua_package_path "/usr/local/openresty/nginx/conf/?.lua;;";
include /usr/local/openresty/nginx/conf/conf.d/*.conf;
}