Skip to content

Commit

Permalink
Merge pull request #7 from kbarendrecht/develop
Browse files Browse the repository at this point in the history
change serverport to 80
  • Loading branch information
kbarendrecht authored Nov 21, 2018
2 parents 946a4af + 6804c1e commit f6550d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const server = http.createServer((request, response) => {
const requestPath = urlParser(request.url).pathname;
generatePdf(request, response);

}).listen(8000);
}).listen(80);

server.on('error', function (e) {
console.log(e);
Expand Down

0 comments on commit f6550d3

Please sign in to comment.