Hi guys. We want to access our Camunda instance via a reverse proxy (Apache2). Our current configuration is able to redirect an URL to a Tomcat server, however, the end of the link to the landing page (#!/login) is missing. Hence, we cannot reach the login of our Camunda instance (http://[…]/camunda/app/welcome/default/#!/login). Our current configuration looks as follows:
<VirtualHost *:80>
ServerName process.bbc.local
ProxyRequests On
ProxyPreserveHost On
ProxyPass “/” “http://localhost:8080/camunda/”
ProxyPassReverse “/” “http://localhost:8080/camunda/”
Can someone tell me best practices on how to run Camunda instances via a Apache2 reverse proxy in general? Regarding our case: is the #!/login at the end of the URL really the problem or is something else missing?
Thanks in advance and best regards!