重识Nginx - 09 使用Nginx内置变量$limit_rate实现带宽限速

Posted 小小工匠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了重识Nginx - 09 使用Nginx内置变量$limit_rate实现带宽限速相关的知识,希望对你有一定的参考价值。

文章目录



官网

https://nginx.org/en/docs/


点击 Alphabetical index of variables

找到 https://nginx.org/en/docs/http/ngx_http_core_module.html#var_limit_rate


$limit_rate

Limits the rate of response transmission to a client. The rate is specified in bytes per second. The zero value disables rate limiting. The limit is set per a request, and so if a client simultaneously opens two connections, the overall rate will be twice as much as the specified limit.


实操

修改配置文件


[root@VM-0-7-centos ~]# vim ng/artisan_ng/conf/nginx.conf
[root@VM-0-7-centos ~]#
[root@VM-0-7-centos ~]#
[root@VM-0-7-centos ~]#
[root@VM-0-7-centos ~]# ./ng/artisan_ng/sbin/nginx -s reload
[root@VM-0-7-centos ~]#


重新访问

可以看到 $limit_rate生效了

以上是关于重识Nginx - 09 使用Nginx内置变量$limit_rate实现带宽限速的主要内容,如果未能解决你的问题,请参考以下文章

重识Nginx - 05 热部署_不停机更换新版本的nginx

重识Nginx - 15 使用信号管理Nginx的父子进程

重识Nginx - 15 使用信号管理Nginx的父子进程

重识Nginx - 系列导读

重识Nginx - 12 SSL/TLS 浅析

重识Nginx - 12 SSL/TLS 浅析