如何在nginx中使用确切的URL绕过代理位置?

时间:2018-09-11 10:41:02

标签: nginx proxypass

我想查看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;
        }

}

0 个答案:

没有答案