Camunda spring boot : Change the default webapp from Tasklist to Welcome

Hello everyone,

I am using camunda 7 spring boot distribution. I included the maven dependency camunda-bpm-spring-boot-starter-webapp , excluded camunda-webapp-webjar and created a custom webapp-webjar that I mvn clean install and include as a dependency in the spring-boot project.

The changes to the ui actually exist and it works mostly fine, but the expected behavior we had on tomcat beforehand was for the welcome page to open upon accessing http://localhost:/camunda

from what I can tell the default behavior of the spring application is to navigate the browser to the tasklist upon accessing /camunda.

I tried index-redirect-enabled: true , which upon accessing http://localhost sent me to the welcome page but /camunda was still directing to the tasklist.

Is there a way to change the default behavior and map the default webapp to the welcome page ?

For me, the first page I see is the welcome one.

Indeed if you navigate to localhost:8080 it takes you to the welcome page. But if I use /camunda it goes to tasklist , I want to direct everything to welcome unless for example /camunda/app/tasklist is specified.