bigplum / Nginx-limit-traffic-rate-module

Limiting rate by given variables(like $request_uri, $remote_addr, etc..).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

can this be used to limit the whole server traffic rate?

auxten opened this issue · comments

can this be used to limit the whole server traffic rate?
if so, how?

It's possible I think, if we set $host as the limit variable.

     limit_traffic_rate_zone   rate $host 32m;

     server {
         location /download/ {
             limit_traffic_rate  rate 20k;
         }
     }

All the requests with same header "Host" would be limited in total rate 20k.

BTW, if you want to control traffic in server level, tc may be a better
solution.

man tc

TC(8) Linux TC(8)

NAME
tc - show / manipulate traffic control settings

于 2012-12-19 16:28, auxten 写道:

can this be used to limit the whole server traffic rate?
if so, how?


Reply to this email directly or view it on GitHub
#2.

thx, man