标签: node.js nginx
我有bluehost VPS托管,在其上托管节点js应用程序。我已经配置了vps服务器并在其上安装了nginx。现在,我正在使用反向代理将domain.com重定向到运行节点js应用程序的localhost:3000。现在,我有第二个节点js应用程序,我想在localhost:3001上运行的sub.domain.com上运行。我在bluehost上创建了子域,然后为sub.domain.com使用了相同的反向代理配置,但是它不起作用。
localhost:3000
localhost:3001
sub.domain.com
和
吗?
答案 0 :(得分:0)
我不知道为什么,但是添加了
“ proxy_redirect http://localhost:3001 http://sub.domain.com;”
在子域的配置文件中解决了我的问题:)
Solution Configuration