如何配置Nginx反向代理到NodeJS应用程序

oyjwcjzk  于 2023-03-29  发布在  Nginx
关注(0)|答案(2)|浏览(185)

我是nginx的新手,我正在按照教程使用nginx反向代理设置nodejs应用程序,但似乎没有任何工作。我有一个非常简单的配置,我不知道问题是什么,有人能告诉我吗?我只是想让标准的欢迎到nginx页面在my_domain/服务,然后代理到我的node应用程序在my_domain/api,但node应用程序似乎不工作。当我导航到my_domain/我得到标准的欢迎到nginx页面,但当我去我的_domain/API我得到“无法GET /api”
nginx的默认配置文件

server {
    listen 80 default_server;
    listen [::]:80 default_server;

    

    root /var/www/html;

    index index.html index.htm index.nginx-debian.html;

    server_name my_domain;

    location / {
        # First attempt to serve request as file, then
        # as directory, then fall back to displaying a 404.
        try_files $uri $uri/ =404;
    }

    location /api {
        proxy_pass http://localhost:3000;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection 'upgrade';
        proxy_set_header Host $host;
        proxy_cache_bypass $http_upgrade;
    }

    
}

nodejs应用

const app = express()

app.use(express.json())

app.get('/', (req, res) => {
    res.send('<div><h1>Hello world</h1></div>')
})

app.get('/products', (req, res) => {
    res.send('<div><h1>All Products</h1></div>')
})

app.get('/products/:id', (req, res) => {
    const id = req.params.id
    res.send(`<div><h1>Product: ${id}</h1></div>`)
})


const PORT = 3000

app.listen(PORT, () => {
    console.log(`App listening on port ${PORT}`)
})
xmjla07d

xmjla07d1#

你需要在你的情况下使用proxi_pass。对于nginx,你可以做的是重写相关端口的请求,在你的情况下为3000。这是我如何处理的。

location /node/ {
    rewrite /node/(.*)  /$1 break;
    proxy_pass http://localhost:3000;
}
gpnt7bae

gpnt7bae2#

验证nginx配置文件是否位于正确的目录中,如果您在服务器上启用了防火墙,请确保将其配置为允许端口3000上的流量。

相关问题