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