我正在尝试让 node.js 在 mac os x 服务器上工作。使用服务器应用程序,在这里我将 example.com 设置为侦听端口 80 上的所有 ip 并从文件夹中读取,example.com 有一条 A 记录指向我的服务器静态 ip。这适用于 apache。
我已将 node.js 设置为侦听本地 ip 上的端口 8080,但是当我转到 example.com:8080 时,我得到 404。
}).listen(8080, '10.100.100.15');
Apache 也在侦听该 IP,但据我所知仅在端口 80 上侦听。任何想法,链接等表示赞赏。