限制下载速度

1
2
3
4
location xxx {
limit_rate 100k;
...
}

image-20220107120229415

重启nginx后,可以发现下载速度,确实被限制在 100k/s 左右

image-20220107120250231

限制并发数

添加如下两行参数

1
2
3
4
5
6
7
8
9
10
http{
limit_conn_zone $binary_remote_addr zone=one:10m;
...
service{
...
location xxx{
limit_conn one 1;
}
}
}

image-20220107120309413