七 nginx 高级应用
1 使用alias实现虚拟目录
location /test {
# /var/www/qianfeng/index.htmlalias /var/www/qianfeng/;index index.html; }location /test {
#/var/www/qianfeng/test/index.htmlroot /var/www/qianfeng/;index index.html; }
2 通过 stub_status 模块监控 nginx 的工作状态
1)、通过 nginx -V 命令查看是否已安装 stub_status 模块
2)、编辑 /etc/nginx/nginx.conf 配置文件
#添加以下内容~~
location /nginx-status { stub_status on; access_log /var/log/nginx/nginxstatus.log; #设置日志文件的位置 auth_basic "nginx-status"; #指定认证机制(与location后面的内容相同即可) auth_basic_user_file /etc/nginx/htpasswd; #指定认证的密码文件 }
3).创建认证口令文件并添加用户qianfeng和zdgg,密码用md5加密
[root@localhost ~]# yum install -y httpd-tools #htpasswd 是开源 http 服务器 apache httpd 的一个命令工具,用于生成 http 基本认证的密码文件
htpasswd -c -m /etc/nginx/htpasswd qianfeng # -c 创建解密文件,-m MD5加密
htpasswd -m /etc/nginx/htpasswd zsgg
4)、重启服务
5)、客户端访问 http://ip/nginx-status 即可
Active connections: 2
server accepts handled requests27 27 40
Reading: 0 Writing: 1 Waiting: 1Active connections – 活跃的连接数量
server accepts handled requests — 总共处理了27个连接 , 成功创建27次握手, 总共处理了40个请求。
reading — 读取客户端的连接数。
writing — 响应数据到客户端的数量。
waiting — 开启 keep-alive 的情况下,这个值等于 active – (reading+writing), 意思就是 Nginx 已经处理完正在等候下一次请求指令的驻留连接。
3 使用 limit_rate 限制客户端传输数据的速度
1.编辑/etc/nginx/nginx.conf
location / {root /var/www/nginx/; index index.html index.htm;limit_rate 2k; #对每个连接的限速为2k/s}
2.重启服务
注意要点:
-
配置文件中的每个语句要以 ; 结尾
-
使用 htpasswd 命令需要先安装 httpd-tools