From 0be038fe07319ea8ebd166d1711aab85a1371afb Mon Sep 17 00:00:00 2001 From: Brian Long Date: Thu, 14 Jan 2021 11:19:01 -0500 Subject: [PATCH] added acs platform/share AIMS config after testing --- docker-compose.yml | 6 +++--- keycloak-alfresco-realm.json | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index c5412db..cc2c49d 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -39,7 +39,7 @@ services: -Dauthentication.chain=aims:identity-service,builtin:alfrescoNtlm -Didentity-service.authentication.defaultAdministratorUserNames=admin.1 - -Didentity-service.auth-server-url=http://identity:8080/auth + -Didentity-service.auth-server-url=${IDENTITY_SERVICE_BASEURL}/auth -Dsystem.content.eagerOrphanCleanup=true -Dsystem.content.orphanProtectDays=0 @@ -68,8 +68,8 @@ services: -Dalfresco.protocol=${PROXY_PROTOCOL} -Daims.enabled=true -Daims.realm=alfresco - -Daims.resource=alfresco - -Daims.authServerUrl=http://identity:8080/auth + -Daims.resource=acs-share + -Daims.authServerUrl=${IDENTITY_SERVICE_BASEURL}/auth -Daims.sslRequired=none -Daims.publicClient=true -Daims.autodetectBearerOnly=true diff --git a/keycloak-alfresco-realm.json b/keycloak-alfresco-realm.json index 198f54a..43cb8ae 100644 --- a/keycloak-alfresco-realm.json +++ b/keycloak-alfresco-realm.json @@ -27,6 +27,21 @@ "attributes": { "login_theme": "alfresco" } + }, + { + "clientId": "acs-share", + "name": "ACS Share", + "enabled": true, + "alwaysDisplayInConsole": false, + "redirectUris": [ "*" ], + "standardFlowEnabled": true, + "implicitFlowEnabled": false, + "directAccessGrantsEnabled": false, + "publicClient": true, + "protocol": "openid-connect", + "attributes": { + "login_theme": "alfresco" + } } ], "requiredCredentials": [ "password" ],