How can I add prefix to flowable redirections?

Hello all,

I have a microservice which has flowable starters in pom.xml, all under version 6.7.2

flowable-spring-boot-starter-ui-idm
flowable-spring-boot-starter-ui-admin
flowable-spring-boot-starter-ui-modeler
flowable-spring-boot-starter-ui-task
flowable-spring-boot-starter

My microservice runs on root context path.

I am using reverse proxy on dev, so for example when I want to go to my-main-app/my-microservice
I expect to see idm login page. But instead of my-main-app/my-microservice/idm/login, I see my-main-app/idm/login but that path does not exist. How can I redirect flowable to correct path?
I tried

common:
    app:
      idm-redirect-url: /my-microservice/idm/login

but nothing happened.

Any help would be appreciated.