Remove the dependency with TestConfig (#4752)

* Remove the dependency with TestConfig

* Change protocol to https

* Trigger the cloud change

* Trigger the cloud change
This commit is contained in:
Maurizio Vitale
2019-05-20 18:11:01 +01:00
committed by Vito
parent cff9bf0930
commit 1141511a07
5 changed files with 12 additions and 11 deletions

View File

@@ -51,7 +51,7 @@ module.exports = {
*/
adminPassword: PASSWORD,
hostBPM: "http://" + ( HOST_BPM || PROXY || HOST),
hostBPM: "https://" + ( HOST_BPM || PROXY || HOST),
clientIdSso: "alfresco",
@@ -66,7 +66,7 @@ module.exports = {
baseUrl = HOST;
}
return `http://${baseUrl}/auth/realms/alfresco`;
return `https://${baseUrl}/auth/realms/alfresco`;
}(),
hostIdentity: function () {
@@ -83,7 +83,7 @@ module.exports = {
}
return `http://${baseUrl}/auth/admin/realms/alfresco`;
return `https://${baseUrl}/auth/admin/realms/alfresco`;
}()
},