我有一个应用程序在heroku上运行,并在带有https的节点上运行express。我该如何识别协议以在heroku上使用nodejs强制重定向到https?
我的应用程序只是一个简单的http服务器,它(尚未)意识到heroku正在向其发送https请求:
/* Heroku provides the port they want you on in this environment variable (hint: it's not 80) */
app.listen(process.env.PORT || 3000);
湖上湖
相关分类