<div dir="ltr">How do you test the limit_speed module? It works in my test box.<div><br></div><div style>Thanks.</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/4/5 tssungeng <span dir="ltr"><<a href="mailto:nginx-forum@nginx.us" target="_blank">nginx-forum@nginx.us</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">centos5.5 + nginx-1.3.14<br>
<br>
I use the limit_speed_zone<br>
(<a href="https://github.com/yaoweibin/nginx_limit_speed_module" target="_blank">https://github.com/yaoweibin/nginx_limit_speed_module</a>),and set the<br>
nginx.conf:<br>
<br>
http {<br>
    limit_speed_zone one $server_port 10m;<br>
    server {<br>
        listen       8080;<br>
        server_name  localhost;<br>
        location / {<br>
            root   /opt/case/web/www;<br>
            index  index.html index.htm index.php;<br>
            limit_speed one 10k;<br>
        }<br>
    }<br>
}<br>
<br>
The uper setting can limit the speed to 10K per IP.<br>
<br>
and then ,i try the HttpLimitConnModule:<br>
<br>
http {<br>
    limit_conn_zone $server_port zone=addr:10m;<br>
    server {<br>
        listen       8080;<br>
        server_name  localhost;<br>
        location / {<br>
            root   /opt/case/web/www;<br>
            index  index.html index.htm index.php;<br>
            limit_rate 20k;<br>
        }<br>
    }<br>
}<br>
<br>
The uper setting can limit the speed to 20K per connetction.and if a IP open<br>
5 thread for conn,then ,the IP can download 100K/s from my nginx.<br>
<br>
the nginx.conf of my Nginx with some error?<br>
<br>
Posted at Nginx Forum: <a href="http://forum.nginx.org/read.php?2,238074,238119#msg-238119" target="_blank">http://forum.nginx.org/read.php?2,238074,238119#msg-238119</a><br>
<div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Weibin Yao<br>Developer @ Server Platform Team of Taobao
</div>