mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
475 B
13 lines
475 B
lua_package_path "{$SERVER_PATH}/web_conf/nginx/lua/?.lua;{$SERVER_PATH}/openresty/lualib/?.lua;;";
|
|
lua_package_cpath "{$SERVER_PATH}/web_conf/nginx/lua/?.so;{$SERVER_PATH}/openresty/lualib/?.so;;";
|
|
|
|
lua_code_cache on;
|
|
|
|
#init_by_lua_file
|
|
init_by_lua_file {$SERVER_PATH}/web_conf/nginx/lua/empty.lua;
|
|
|
|
#init_worker_by_lua
|
|
init_worker_by_lua_file {$SERVER_PATH}/web_conf/nginx/lua/empty.lua;
|
|
|
|
#access_by_lua_file
|
|
access_by_lua_file {$SERVER_PATH}/web_conf/nginx/lua/empty.lua; |