diff --git a/src/js/client.js b/src/js/client.js index d0316b3d4..360be69ea 100644 --- a/src/js/client.js +++ b/src/js/client.js @@ -1972,7 +1972,9 @@ angular.module('Application').service('Client', ['$http', '$interval', '$timeout if (app.manifest.postInstallMessage) { var text= app.manifest.postInstallMessage; // we chose - because underscore has special meaning in markdown - text = text.replace(/\$CLOUDRON-APP-DOMAIN/g, app.fqdn); + text = text.replace(/\$CLOUDRON-APP-LOCATION/g, app.location); + text = text.replace(/\$CLOUDRON-APP-DOMAIN/g, app.domain); + text = text.replace(/\$CLOUDRON-APP-FQDN/g, app.fqdn); text = text.replace(/\$CLOUDRON-APP-ORIGIN/g, 'https://' + app.fqdn); text = text.replace(/\$CLOUDRON-API-DOMAIN/g, this._config.adminFqdn); text = text.replace(/\$CLOUDRON-API-ORIGIN/g, 'https://' + this._config.adminFqdn);