Redirect URL isn't using https

Hi all,

I have flowable configured to use https, but the redirect url when logging into apps outside the IDM app shows http instead of https. For example

https://flowable.myurl.com:8443/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http:%2F%2Fflowable.myurl.com:8443%2Fflowable-admin%2F

In my flowable-ui-app.properties file inside tomcat/lib, I have this

idm.app.url=https://localhost:8443/flowable-idm
idm.app.redirect.url=https://flowable.myurl.com:8443/flowable-idm
idm.admin.user=admin
idm.admin.password=test

I can login to IDM fine, but see this issue for any other app login.

I have flowable installed on tomcat 8.5.

Flowable is sitting behind an nginx reverse proxy, but it’s pretty complex and I’m not an expert at identifying if this is playing a part. I’ve never seen this problem before with other apps using the same nginx config.

Is there something I can change to fix this?

1 Like

I’ve resolved this by adding this to my tomcat’s server.xml

<Connector port="8080" protocol="HTTP/1.1" secure="true" scheme="https" proxyPort="8443" />