From 58e0e446939cfc5aa32f9db3e34fe6f98be88296 Mon Sep 17 00:00:00 2001 From: Francesco Corti Date: Fri, 5 Apr 2019 08:18:50 +0100 Subject: [PATCH] Update after some new tests. (#4559) --- docs/tutorials/activiti-7-and-adf.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/tutorials/activiti-7-and-adf.md b/docs/tutorials/activiti-7-and-adf.md index 9794a2cc02..3dca96c41e 100644 --- a/docs/tutorials/activiti-7-and-adf.md +++ b/docs/tutorials/activiti-7-and-adf.md @@ -74,19 +74,21 @@ application working against Activiti 7 Community Edition backend services. To configure your existing ADF application, you just need to edit the `app.config.json` file. First of all, be sure you set up the `bpmHost`, `identityHost` and `host` properties with the -correct URL of the Activiti 7 deployment. It should look something like the example below: +correct URL of the Activiti 7 deployment. Then check (and probably change) the URI of `identityHost` and `host` to be `/auth/realms/activiti`. + +After your changes, the `app.config.json` file should look like the example below: ```json ... "bpmHost": "", - "identityHost": "/auth/realms/alfresco", + "identityHost": "/auth/realms/activiti", "providers": "BPM", "application": { "name": "Alfresco ADF Application" }, "authType": "OAUTH", "oauth2": { - "host": "/auth/realms/alfresco", + "host": "/auth/realms/activiti", ... ```