# nginx.conf
http {
...
...
lua_shared_dict statics_dict 1M; # 初始化变量
lua_package_path "/etc/nginx/ngx_lua_reqstatus/?.lua"; #路径
log_by_lua_file "/etc/nginx/ngx_lua_reqstatus/hook.lua"; # 添加此句
server {
listen 80;
server_name www.justforfun.com;
location /{
...
}
}
# http 接口
server {
listen 127.0.0.1:6080;
location /{
access_by_lua_file "/etc/nginx/ngx_lua_reqstatus/status.lua";
}
}
}
查看 www.justforfun.com
的运行状况:
curl localhost:6080/?domain=www.justforfun.com
输出
Server Name key: www.justforfun.com
Seconds SinceLast: 26.601999998093
Average Req Time Sec: 0.031799983978271
Request Count: 5
Requests Per Secs: 0.18795579281101
5xx num: 0
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.