Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经使用 Node.js 和 wxpress-ws 成功创建了一个 WS 服务器。问题是我不知道要使用哪个端口而不是在请求 URL 中键入它。因此,我不需要使用ws://mysite.com::xxxx/,而是只需要输入ws://mysite.com/
我试过监听 80、8080 端口,但没有成功。
如果您的应用程序正在侦听端口 XXXX,那么您将需要通过在您的 url ws://myapp.com:XXXX/ 中指示端口来访问它。
如果你想使用 ws://myapp.com/,你需要监听 80 端口,两种解决方案:
sudo node myapp.js
nginx