nginx配置文件中的每个语句要以 ; 结尾
配置文件中的server块中编辑:
location /test {
alias /usr/share/nginx/html; //映射的是/usr/share/nginx/html
index index.html;
}
location /test {
root /usr/share/nginx/html; //映射的是/usr/share/nginx/html/test
index index.html;
}
配置文件中的server块中编辑,监控模块,再给监控模块上锁:
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; //指定认证的密码文件
}
yum install -y httpd-tools //htpasswd是开源http服务器apache、httpd的一个命令工具,用于生成http基本认证的密码文件
htpasswd -c -m /etc/nginx/htpasswd 用户名 // -c 创建解密文件,-m MD5加密
htpasswd -m /etc/nginx/htpasswd 用户名
http://ip/nginx-status //访问监控模块网址
Active connections: 2
server accepts handled requests
27 27 40
Reading: 0 Writing: 1 Waiting: 1
=========================================================
Active connections //活跃的连接数量
server accepts handled requests //服务器接受处理请求
27 //总连接数connection(Tcp),tcp三次握手四次挥手
27 //成功的连接数connection(Tcp)
失败的连接数=总连接数-成功连接数
40 //总共处理的请求数requests(Http)
Reading: 0 //读取客户端Header的信息数 请求头
Writing: 1 //返回给客户端的header的信息数量 响应头
Waiting: 1 //等待的请求数 开启了keepalive
配置文件中的server块中编辑:
location / {
root /usr/share/nginx/html;
index index.html index.htm;
limit_rate 2k; //对每个连接的限速为2k/s
}