【发布时间】:2021-11-02 09:21:48
【问题描述】:
问题
我用app.listen做了一个快递服务器如下:
app.listen(config.PORT, _ => { console.log(`Server started at port # ${config.PORT}`)})
我将它部署在 Heroku 上。
现在它正在使用 https。签出:https://dnt-ecommerce.herokuapp.com/
我在浏览器开发工具中检查了请求,它仍然是 https
问题
我的 http express 服务器怎么会在前端处理 https 请求?
【问题讨论】:
标签: node.js express http heroku https