|
|
@ -118,6 +118,7 @@ function start() {
|
|
|
|
// Parse out the relative_url and other goodies from the configured URL
|
|
|
|
// Parse out the relative_url and other goodies from the configured URL
|
|
|
|
var urlObject = url.parse(nconf.get('url'));
|
|
|
|
var urlObject = url.parse(nconf.get('url'));
|
|
|
|
var relativePath = urlObject.pathname !== '/' ? urlObject.pathname : '';
|
|
|
|
var relativePath = urlObject.pathname !== '/' ? urlObject.pathname : '';
|
|
|
|
|
|
|
|
nconf.set('base_url', urlObject.protocol + '//' + urlObject.host);
|
|
|
|
nconf.set('use_port', !!urlObject.port);
|
|
|
|
nconf.set('use_port', !!urlObject.port);
|
|
|
|
nconf.set('relative_path', relativePath);
|
|
|
|
nconf.set('relative_path', relativePath);
|
|
|
|
nconf.set('port', urlObject.port || nconf.get('port') || nconf.get('PORT') || 4567);
|
|
|
|
nconf.set('port', urlObject.port || nconf.get('port') || nconf.get('PORT') || 4567);
|
|
|
|