diff --git a/src/install.js b/src/install.js index 3b742a67cd..cddbc4e079 100644 --- a/src/install.js +++ b/src/install.js @@ -29,7 +29,7 @@ questions.main = [ { name: 'base_url', description: 'URL used to access this NodeBB', - 'default': nconf.get('base_url') || 'http://localhost:4567', + 'default': nconf.get('base_url') + (nconf.get('use_port') ? ':' + nconf.get('port') : '') || 'http://localhost:4567', pattern: /^http(?:s)?:\/\//, message: 'Base URL must begin with \'http://\' or \'https://\'', },