我在Azure上将Node.js Web应用程序部署为App Service
如何从应用程序中查看console.log?
我在 Azure 上部署了我的 nodejs https 服务器
https.createServer(options, app).listen(8080, ()=>{console.log("listening on 8080")});
从上面的代码片段可以看出,它正在侦听端口 8080
我应该如何访问 Azure 网站上的服务器?
https://myapp.azurewebsites.net/ 或 https://myapp.azurewebsites.net:8080/