Adding prefix on every request URL Cockpit

Hi everyone,

is there any proper way to add suffix to any request URL in cockpit?
sample url:
http://localhost:8081/camunda/app/cockpit/default/#/login
expected ur:
http://localhost:8081/**suffix**/camunda/app/cockpit/default/#/login

Regards,

Hello @id-cws ,

to create a suffix, you can use the camunda.bpm.webapp.application-path property, given you are using Spring Boot or Run. It will replace the /camunda

I hope this helps

Jonathan

3 Likes

Thank you @jonathan.lukas .

I will update again if it’s not working or need more help.

1 Like

The similar configuration is available for REST API as well.
If you wish to change /engine-rest to something else use below property.

spring.jersey.application-path=myapplicationpath

Reference : REST API | docs.camunda.org

1 Like