authUrl and authServerUrl in a reverse-proxy context

OK so 2 things are needed.
First, in the standalone.xml, the proxy-address-forwarding attribute.

<http-listener name="default" socket-binding="http" proxy-address-forwarding="true" enable-http2="true"/>

then, in nginx,

proxy_set_header X-Forwarded-Proto https;

And https MUST be lowercase.
I made a test yesterday with a HTTPS word (I read this somewhere) and it didn’t work. I then abandoned and requested an assistance.

Ok, it works now, there was definitively a trick.
Thank you again.

It was P3rf3ct :slight_smile:
Have a nice day,
db