Skip to content

Commit

Permalink
correct port number
Browse files Browse the repository at this point in the history
  • Loading branch information
mau11 committed Jan 20, 2017
1 parent ff8f2eb commit 08758aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var bodyParser = require('body-parser');
var app = express();
var path = require('path');
var handler = require('./utils/requestHandler.js');
var port = process.env.RDS_PORT || 8080;
var port = process.env.PORT || 8080;

// Middleware
app.use(express.static('./public'));
Expand Down

0 comments on commit 08758aa

Please sign in to comment.