Хм..
http {
.....
geo $is_local {
default 0;
10.0.0.0/8 1;
172.16.0.0/12 1;
192.168.0.0/16 1;
}
.....
server {
if ($is_local = 0) {
limit_rate 16k;
}
if ($is_local = 1) {
limit_rate 1024k;
}
.....
}
}
Ругается
: "limit_rate" directive is not allowed here
Posted at Nginx Forum: http://forum.nginx.org/read.php?21,67216,67679#msg-67679