nginx限制IP并发访问配置教程(apache限制ip并发访问)
nginx限制ip并发数,限制同一个ip同时连接服务器的数量,要使apache服务器做对同一IP地址的连接限制,需要mod_limitipconn来实现。
一般需要手动编译。不过模块作者也提供了一些编译好的模块,根据apache版本可以直接使用。
1,nginx限制ip并发数、限制ip并发访问。
nginx限制ip并发数,限制同一个ip同时连接服务器的数量。
1、添加limit_zone
这个变量只能在http使用
2、添加limit_conn
这个变量可以在http, server, location使用
只限制一个站点,所以添加到server中:
3、重启nginx
killall nginx -HUP
vi /usr/local/nginx/conf/vhosts/down.redocn.com.conf
limit_zone one $binary_remote_addr 10m;
server
{
listen 80;
server_name down.redocn.com;
index index.html index.htm index.php;
root /data/www/wwwroot/down;
error_page 404 /index.php;
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
#Zone limit
location / {
limit_conn one 1;
limit_rate 20k;//限速
}
# serve static files
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
root /data/www/wwwroot/down;
expires 30d;
}
}
2、apache限制ip并发
要使apache服务器做对同一IP地址的连接限制,需要mod_limitipconn来实现。
一般需要手动编译。不过模块作者也提供了一些编译好的模块,根据apache版本可以直接使用。
1、编译方式:
2、rpm安装方式:
直接下载mod_limitipconn-0.xx.rpm
然后,确认产生的mod_limitipconn.so文件在apache服务器模块目录里。
3、编辑httpd.conf文件: