Configure reverse-proxy for Keycloak docker with custom base URL
Just tested that @home, and actually multiple configuration additions are needed: 1/ Run the keycloak container with env -e PROXY_ADDRESS_FORWARDING=true as explained in the docs, this is required in a proxy way of accessing to keycloak: docker run -it –rm -p 8087:8080 –name keycloak -e PROXY_ADDRESS_FORWARDING=true jboss/keycloak:latest Also explained in this SO question 2/ Change … Read more