We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02ed3b7 commit 0f4eaedCopy full SHA for 0f4eaed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "mirror-http-server",
3
- "version": "1.0.0",
+ "version": "1.0.1",
4
"description": "A dummy HTTP server that responds whatever you told him to",
5
"scripts": {
6
"start": "node server.js | npm run bunyan",
server.js
@@ -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');
7
var bunyan = require('bunyan');
0 commit comments