在bluehost vps上使用nginx的反向代理不适用于子域

时间:2018-07-30 10:02:29

标签: node.js nginx

我有bluehost VPS托管,在其上托管节点js应用程序。我已经配置了vps服务器并在其上安装了nginx。现在,我正在使用反向代理将domain.com重定向到运行节点js应用程序的localhost:3000。现在,我有第二个节点js应用程序,我想在localhost:3001上运行的sub.domain.com上运行。我在bluehost上创建了子域,然后为sub.domain.com使用了相同的反向代理配置,但是它不起作用。

Configuration of domain.com for 1st node app which is working fine

Configuration of sub.domain.com for 2nd node app which is not working吗?

1 个答案:

答案 0 :(得分:0)

我不知道为什么,但是添加了

“ proxy_redirect http://localhost:3001 http://sub.domain.com;”

在子域的配置文件中解决了我的问题:)


Solution Configuration