ubuntu – 在达到nginx状态时绕过localhost上的SSL

前端之家收集整理的这篇文章主要介绍了ubuntu – 在达到nginx状态时绕过localhost上的SSL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有/ Nginx_status的位置,昨晚我安装了SSL证书.

server {
    listen 443;
    ...
    location /Nginx_status {
        stub_status on;
        access_log off;
        allow 127.0.0.1;
        deny all;
    }
}

当它仍然在端口80上时,这是在进行预证书安装.现在,我已经重定向到将www.domain.tld和domain.tld流量重定向到https,例如

server {
        listen 80;
        server_name domain.tld;
        return 301 https://domain.tld$request_uri;
}

server {
        listen 80;
        server_name www.domain.tld;
        return 301 https://domain.tld$request_uri;
}

我正在使用graphdat-relay来监控Nginx统计数据,现在卷曲http://127.0.0.1/Nginx_status只获取重定向页面,例如

301 Moved Permanently301 Moved PermanentlyNginx/1.6.2

如何告诉Nginx绕过SSL并仅在本地允许/ Nginx_status?

最佳答案
为此添加一个仅侦听本地主机的特殊服务器.

server {
    listen 127.0.0.1:80;
    listen [::1]:80;
    ...
    location /Nginx_status {
        stub_status on;
        access_log off;
        allow 127.0.0.1;
        deny all;
    }
}
原文链接:https://www.f2er.com/nginx/435187.html

猜你在找的Nginx相关文章