Nginx安装nginx-http-concat模块方法
下载模块 git clone git://github.com/alibaba/nginx-http-concat.git
下载模块 git clone git://github.com/alibaba/nginx-http-concat.git
Nginx有自己专用的封锁IP的模块ngx_http_access_module ,语法如下: deny IP; deny subnet; allow IP; ...
# curl –head www.nginx.net HTTP/1.1 302 Moved Temporarily Server: nginx/0.8.38 D...
vi 编辑站点配置文件 在server_name这一行的下方加入 if ($host != 'www.05273.com' ) { rewr...
location ~ /upload/.*.(php|php5)?$ { deny all; return 404; } 这就是禁止upload内执行php,但...
在nginx.conf的http{}添加 limit_zone one $binary_remote_addr 10m; 然后在虚拟机里写 loc...