子目录/位置中的 Nginx + Express 应用程序返回 404

子目录/位置中的 Nginx + Express 应用程序返回 404

我想要制作一个 Express 应用,可通过http://website.com/app并使用 nginx 作为反向代理以及提供静态文件。

这是我的 nginx 配置:

upstream app {
    server localhost:3333;
}

server {
    listen 80;
    server_name website.com www.website.com;
    root /var/www/website.com;

    index index.html index.htm;

    location = / {
            try_files $uri $uri/ =404;
    }
    
    location /app/ {
        alias /var/www/app/static;
        try_files $uri $uri/ @app;
    }

    location @app {
        proxy_pass http://app;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";  
    }
}

index.js (位于/var/www/app/static/) 通过 请求一些资源fetch("/info")

app.js(位于/var/www/app/)应该使用

const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json())

app.get("/info", (req, res) => {
    res.header("Content-Type",'application/json');
    res.send(JSON.stringify(info));
})

app.listen(3333, () => {
    console.log("Server listening at http://localhost:3333")
})

当我访问http://mywebsite.com/app,静态文件由 nginx 提供服务,但/info出现 404。Nginx 错误日志:“/var/www/website.com/info”失败(2:没有此文件或目录). Express 应用程序正在运行($pm2 ls->状态“在线”)。

我认为代理配置不正确,或者我对 nginx 和服务器的工作方式存在误解(这是我的第一步)。如果能得到建议,我将不胜感激。

答案1

你必须为此输入 DNS,

指定内容的位置,将服务器名称添加为站点并在位置内容中

相关内容