update SSO defaults (#4167)

This commit is contained in:
Denys Vuika
2019-01-15 17:24:30 +00:00
committed by Eugenio Romano
parent 71c0fd0046
commit c7c4dcb659

View File

@@ -1,20 +1,21 @@
{ {
"$schema": "../../lib/core/app-config/schema.json", "$schema": "../../lib/core/app-config/schema.json",
"ecmHost": "http://{hostname}:{port}", "ecmHost": "{protocol}//{hostname}{:port}",
"bpmHost": "http://{hostname}:{port}", "bpmHost": "{protocol}//{hostname}{:port}",
"identityHost": "http://localhost:30081/auth/admin/realms/myrealm", "identityHost": "{protocol}//{hostname}{:port}/auth/realms/alfresco",
"baseShareUrl": null, "baseShareUrl": null,
"loginRoute": "login", "loginRoute": "login",
"providers": "ALL", "providers": "ALL",
"contextRootBpm": "activiti-app", "contextRootBpm": "activiti-app",
"authType" : "BASIC", "authType" : "BASIC",
"oauth2": { "oauth2": {
"host": "http://localhost:30081/auth/realms/myrealm", "host": "{protocol}//{hostname}{:port}/auth/realms/alfresco",
"clientId": "activiti", "clientId": "alfresco",
"scope": "openid", "scope": "openid",
"secret": "", "secret": "",
"implicitFlow": false, "implicitFlow": true,
"silentLogin": false, "silentLogin": true,
"redirectSilentIframeUri": "{protocol}//{hostname}{:port}/assets/silent-refresh.html",
"redirectUri": "/", "redirectUri": "/",
"redirectUriLogout": "/logout" "redirectUriLogout": "/logout"
}, },