mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-07 14:35:47 +01:00
saving portless hostNAME into server config, not the host! Argh. closed #1713
This commit is contained in:
@@ -192,7 +192,7 @@ function completeConfigSetup(err, config, next) {
|
||||
var urlObject = url.parse(config.base_url),
|
||||
server_conf = config;
|
||||
|
||||
server_conf.base_url = urlObject.protocol + '//' + urlObject.host;
|
||||
server_conf.base_url = urlObject.protocol + '//' + urlObject.hostname;
|
||||
server_conf.use_port = urlObject.port !== null ? true : false;
|
||||
server_conf.relative_path = (urlObject.pathname && urlObject.pathname.length > 1) ? urlObject.pathname : '';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user