diff options
author | Christoph (Sheogorath) Kern | 2018-07-27 14:40:41 +0200 |
---|---|---|
committer | GitHub | 2018-07-27 14:40:41 +0200 |
commit | a6a15e09fe2b3074daa200fe7768e39c20623b9b (patch) | |
tree | 9882e2b2bd2a61d7fca1716c2f59fcb3fea78860 /lib | |
parent | 53a846bdc56b5b108825451c3c248aead2712e97 (diff) | |
parent | 70e8df5c04274ac4ee9d3eb2462fed12a85f6ccd (diff) |
Merge pull request #902 from ahihi/listen-address-options
Support 'host' & 'path' config options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config/default.js | 1 | ||||
-rw-r--r-- | lib/config/environment.js | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/lib/config/default.js b/lib/config/default.js index 5c39a4da..6096bce4 100644 --- a/lib/config/default.js +++ b/lib/config/default.js @@ -3,6 +3,7 @@ module.exports = { domain: '', urlPath: '', + host: '0.0.0.0', port: 3000, urlAddPort: false, allowOrigin: ['localhost'], diff --git a/lib/config/environment.js b/lib/config/environment.js index d850ac9d..6c4ce92f 100644 --- a/lib/config/environment.js +++ b/lib/config/environment.js @@ -5,7 +5,9 @@ const {toBooleanConfig, toArrayConfig, toIntegerConfig} = require('./utils') module.exports = { domain: process.env.CMD_DOMAIN, urlPath: process.env.CMD_URL_PATH, + host: process.env.CMD_HOST, port: toIntegerConfig(process.env.CMD_PORT), + path: process.env.CMD_PATH, urlAddPort: toBooleanConfig(process.env.CMD_URL_ADDPORT), useSSL: toBooleanConfig(process.env.CMD_USESSL), hsts: { |