Skip to content

Commit 0f4eaed

Browse files
committed
Remove ability to change service host/port + bump version
1 parent 02ed3b7 commit 0f4eaed

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirror-http-server",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A dummy HTTP server that responds whatever you told him to",
55
"scripts": {
66
"start": "node server.js | npm run bunyan",

server.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

3-
var host = process.env.HOST || '0.0.0.0';
4-
var port = process.env.PORT || 80;
3+
var host = '0.0.0.0';
4+
var port = 80;
55

66
var _ = require('lodash');
77
var bunyan = require('bunyan');

0 commit comments

Comments
 (0)