Nginx 作为反向代理无法解析

Nginx 作为反向代理无法解析

我正在尝试使用 NGINX 作为简单的反向代理。我的内容在 localhost:7700 上直播。

以下是我的步骤:

apt-get -qq install nginx -y
rm -f /etc/nginx/sites-enabled/default
cat << EOF > /etc/nginx/sites-enabled/meilisearch
server {
    listen 80 default_server;
    listen [::]:80 default_server;
    server_name _;
    location / {
        proxy_pass  http://localhost:7700;
    }
}
EOF

systemctl daemon-reload
systemctl enable nginx
systemctl restart nginx

当我查看以下内容时,Ngninx 显然运行正常:

服务 nginx 状态

但是当我访问我的服务器 IP 时,我看不到内容,它只显示“无法打开页面”。我哪里出错了?nginx 的 access.log 或 error.log 中没有任何内容。

相关内容