diff --git a/webapp.js b/webapp.js index eb05d131..e6ff6591 100644 --- a/webapp.js +++ b/webapp.js @@ -130,7 +130,21 @@ const app = async (orm) => { if (settings.webroot) { console.log(`Running with base URL: ${settings.webroot}`); } - console.log(`Access URL is ${settings.accessUrl}`); + if(settings.accessUrl) { + console.log(`Access URL is ${settings.accessUrl}`); + if(settings.webroot && !settings.accessUrl.includes(settings.webroot)) { + console.log(`- WARNING: Your Access URL does not contain your webroot/WEBROOT setting: '${settings.webroot}'. Invite URLs may not work properly.`) + } + } + if(settings.authentication && settings.authentication.mechanism != 'none') { + console.log('Authentication:', settings.authentication); + } + if(settings.servers) { + console.log('Servers List:', settings.servers); + } + else if(settings.custom_server) { + console.log('Custom Server List:', settings.custom_server); + } }; bootstrap().then((orm) => {