Reputation: 51
I just installed flowable/all-in-one docker image in JElastic. When accessing server.xxx/flowable-modeler a redirection is generated http://localhost:8080/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http://server.xxx/flowable-modeler/
The instance is not installed locally so the browser may not find it. How to manage these redirections ?
Thanks a lot
Upvotes: 1
Views: 487
Reputation: 21403
Looking from the comments the problem is that you can't set the environment variables because they contain -
. The Flowable UI Applications use Spring Boot and you can benefit from the Spring Boot Relaxed Binding.
In this case the FLOWABLE_COMMON_APP_IDM_URL
can be written like FLOWABLE_COMMON_APP_IDMURL
and properly detected by the runtime
Upvotes: 1