先下载openresty
下载地址:http://openresty.org/cn/download.html
server {
listen 80;
server_name _;
location /lua_redis_basic {
default_type 'text/html';
lua_code_cache off;
content_by_lua_file /data/lua/test_redis_basic.lua;
}
}
网友回复
先下载openresty
下载地址:http://openresty.org/cn/download.html
server {
listen 80;
server_name _;
location /lua_redis_basic {
default_type 'text/html';
lua_code_cache off;
content_by_lua_file /data/lua/test_redis_basic.lua;
}
}
网友回复