Nginx 不适用于室外 IP

Nginx 不适用于室外 IP

下午好,在我的 nginx 服务器上,在内部网络上我可以访问标准 nginx 页面,但在外部却不行!我做了一个 tcpdump,包正在进入服务器。我试图禁用 Ubuntu 防火墙sudo ufw 禁用也没有。有人知道缺少哪个配置吗?我有 2 个网络适配器!一个用于内部网络(apache 服务器),另一个用于外部网络

配置文件:

upstream immcloud {
    server 10.1.1.3;
    server 10.1.1.4;
}

server {
    listen 80;
    listen [::]:80;
    server_name _;

    more_set_headers 'Server: IMM GUARD';

    proxy_set_header Host $http_host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

    location / {
        proxy_set_header Accept-Encoding "";
        proxy_pass "http://immcloud/";
        sub_filter </body>
        "<script>console.log('%c oi', 'color: red; font-size: 30px;');</script></body>";
        sub_filter_once on;
    }

    error_page 404 /404.html;
        location = /40x.html {
    }

    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }
}

相关内容