Hilla logout redirect when using servlet context-path is incorrect

I have an application that is failing on a logout redirect when I use a context path to extend my url. I expect it to return “https://mysite.com/oe” but instead it’s returning “http://mysite.com/oe/oe”, which is causing all kinds of issues. Is there a way to handle the double context appending?

1 Like

Faced with same issue. Wait for the answer too.

Could you share some code to show how your current security/logout configuration/implementation looks like at the moment?

I actually figured it out. It was a two step issue that, in my opinion, wasn’t very clearly covered in hlla’s docs. Turns out that the setLoginView in the security config can also set the logout view. Adding this piece of code fixed the “oe/oe” problem;

		setLoginView(http, "login");

As for the https issue, there was another forum that seemed to have the answer;

Fixed with a couple settings:

server.tomcat.remoteip.remote-ip-header=x-forwarded-for
server.tomcat.remoteip.protocol-header=x-forwarded-proto
server.tomcat.remoteip.protocol-header-https-value=https
server.forward-headers-strategy=native```

After implementing these settings the http was fixed.