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.
我编写了一个简单的 HTTP 侦听器并将其部署在 Heroku 应用程序中。我确保将端口绑定在$PORT.
$PORT
现在,我尝试使用name-of-my-app.herokuapp.com:PORT带有和不带有端口的 url 连接到应用程序,但我似乎没有通过。
name-of-my-app.herokuapp.com:PORT
我需要使用什么地址来连接?
谢谢,
塞尔吉奥
只需连接到端口 80 或 443
name-of-my-app.herokuapp.com
Heroku 将负责将 http 和 https 流量路由到分配给您的应用程序的端口。