Express Applications throwing 500 on azure

徘徊边缘 提交于 2019-11-28 08:07:22

问题


The following code runs perfectly locally...

var express = require('express');
var app = express();

app.get('/', function (req, res) {
    res.send("Hello World");
});

var port = 8080;

app.listen(port, function () {
    console.log('Server started and is listening on port ' + port);
});

But when i deploy it to azure I get a 500 error. Here is my findings...

  1. I have taken this advice
  2. Have tried all possible combinations of server.js, app.js, directory structure etc.

The code is being deployed from a local git repo.


回答1:


Azure Web Apps (web sites) listen on ports 80 and 443 only. You can not listen on port 8080.

You'll need to listen on port process.env.PORT. And you can easily run both locally and in Azure by tweaking your port code to something like:

var port = process.env.PORT || 8080;



来源:https://stackoverflow.com/questions/36117795/express-applications-throwing-500-on-azure

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!