我想查看nginx状态页面,但是每次我浏览到url时 http://server/nginx_status我被重定向到http://my.server1.test
我的第一个位置完全匹配= / nginx_status,但仍然无法正常工作。 有人可以说我怎么了吗?
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location = /nginx_status {
stub_status on;
access_log off;
index nothing_will_match;
autoindex on;
}
location / {
proxy_pass http://my.server1.test;
}
}