diff options
author | Ben Burwell <ben@benburwell.com> | 2015-08-02 18:02:23 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-08-02 18:02:23 -0400 |
commit | 96ad764c9db58c7f89c5f85f4ebdff15cc6e1caa (patch) | |
tree | f7490262f17213621ee5567af50acb903de92bd0 /src | |
parent | 77f517251350c8969ebc3cfdb11e1b918fd5f1a2 (diff) |
Change localhost to 0.0.0.0
Diffstat (limited to 'src')
-rw-r--r-- | src/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.js b/src/index.js index 7edcfdb..6e7358a 100644 --- a/src/index.js +++ b/src/index.js @@ -10,7 +10,7 @@ var utils = require('./utils'); var server = new Hapi.Server(); server.connection({ - host: 'localhost', + host: '0.0.0.0', port: process.env.PORT || 8000 }); |