http://www.howtocn.org
---------------------------------------------------------------------------------------------------------------------------------------------------
1)google开发的 高性能传输、低延时,基于nginx的页面加速
https://github.com/pagespeed/ngx_pagespeed#readme
-----------------------------------------------------------------------------------------------------------------------------------------------------
2)
https://github.com/cfsego/limit_upload_rate/
限制客户端上传速率
3)
Echo
http://wiki.nginx.org/HttpEchoModule
便捷命令,输出nginx信息
---------------------------------------------------------------------------------------------------------------------------
4)NGINX 负载均衡模块,(很酷)
“公平的”Nginx 负载均衡模块,增强了Nginx 提供的round-robin 负载均衡算法,可以跟踪后端服务器的负载来分发请求。
upstream mongrel { |
2 | fair; |
3 | server 127.0.0.1:5000; |
4 | server 127.0.0.1:5001; |
5 | server 127.0.0.1:5002; |
6 | } |