Skip to content

Commit

Permalink
Remove ability to change service host/port + bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
eexit committed Dec 2, 2015
1 parent 02ed3b7 commit 0f4eaed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mirror-http-server",
"version": "1.0.0",
"version": "1.0.1",
"description": "A dummy HTTP server that responds whatever you told him to",
"scripts": {
"start": "node server.js | npm run bunyan",
Expand Down
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var host = process.env.HOST || '0.0.0.0';
var port = process.env.PORT || 80;
var host = '0.0.0.0';
var port = 80;

var _ = require('lodash');
var bunyan = require('bunyan');
Expand Down

0 comments on commit 0f4eaed

Please sign in to comment.