原文 nginx 通过信号来控制.对应linux系统就是用kill命令. The command kill sends the specified signal to the specified process or process group. If no signal is specified, the TERM signal is sent. master进程id在默认写入到/nginx/logs/nginx.pid文件中.文件也可以在nginx.conf文件中指定.master进程支持以…
需求背景:比如我们有一个存储文件的web服务器,一般通过url可直接访问到:http://127.0.0.1/uploads/test.rar,如果我们需要限制别人的访问,可以通过添加lua脚本来控制url访问权限,以下是实现步骤. 安装LuaJIT 下载地址:http://luajit.org/download.html tar zxf LuaJIT-2.1.0-beta2.tar.gz cd LuaJIT-2.1.0-beta2 make PREFIX=/usr/local/luajit m…