指令
api
demo
nginx.conf配置1
2
3location /decode_info{
content_by_lua_file lua/decode_info.lua;
}
代码如下:
1 | [root@192 lua]# ls |
如果不想每次更改lua文件都重启nginx,那么在nginx.conf中配置lua_code_cache:1
lua_code_cache off;
nginx.conf配置1
2
3location /decode_info{
content_by_lua_file lua/decode_info.lua;
}
代码如下:
1 | [root@192 lua]# ls |
如果不想每次更改lua文件都重启nginx,那么在nginx.conf中配置lua_code_cache:1
lua_code_cache off;
微信支付