Calculating enrollment url when generalConfig.host config exists

revert-70aa11f8
Rasika Perera 8 years ago
parent 2e8df6a16a
commit b8bf855378

@ -37,6 +37,12 @@ var conf = function () {
return value;
}
);
if (conf.generalConfig.host) {
//TODO: Move enrollment URL into app-conf.json
var enrollmentHost = conf.generalConfig.host.replace(/https:\/\/localhost(:\d+)?/, conf.httpsURL).replace(
/http:\/\/localhost(:\d+)?/, conf.httpURL);
conf.enrollmentUrl = enrollmentHost + conf.enrollmentDir;
}
application.put("CONF", conf);
}
return conf;

Loading…
Cancel
Save