diff options
author | Cheng-Han, Wu | 2016-04-22 03:33:09 +0800 |
---|---|---|
committer | Cheng-Han, Wu | 2016-04-22 03:33:09 +0800 |
commit | ff4698caf5d8d1941255dff6df2ecc3dfd9edde3 (patch) | |
tree | 4832a0358a3274c6e3e23b449d75a2be152d1add | |
parent | 13d61fe42db31878e76be3b617402e6527246990 (diff) |
Update to support DOMAIN and URL_PATH environment variables
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | lib/config.js | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -78,6 +78,8 @@ Environment variables (will overwrite other server configs) | variables | example values | description | | --------- | ------ | ----------- | | NODE_ENV | `production` or `development` | set current environment (will apply correspond settings in the `config.json`) | +| DOMAIN | `hackmd.io` | domain name | +| URL_PATH | `hackmd` | sub url path, like `www.example.com/<URL_PATH>` | | PORT | `80` | web app port | | DEBUG | `true` or `false` | set debug mode, show more logs | diff --git a/lib/config.js b/lib/config.js index 386b0885..7028f29a 100644 --- a/lib/config.js +++ b/lib/config.js @@ -7,8 +7,8 @@ var config = require(path.join(__dirname, '..', 'config.json'))[env]; var debug = process.env.DEBUG ? (process.env.DEBUG === 'true') : ((typeof config.debug === 'boolean') ? config.debug : (env === 'development')); // url -var domain = config.domain || 'localhost'; -var urlpath = config.urlpath || ''; +var domain = process.env.DOMAIN || config.domain || ''; +var urlpath = process.env.URL_PATH || config.urlpath || ''; var port = process.env.PORT || config.port || 3000; var alloworigin = config.alloworigin || ['localhost']; |