How can I set the docker keycloak base url
as parameter ?
I have the following nginx reverse proxy configuration:
server {
listen 80
In my case, I have an existing Keycloak (v8.0.1) on Docker, so I had to update the database as well.
Launch Keycloak Docker container with the following environment variable:
PROXY_ADDRESS_FORWARDING: 'true'
Update the database. I'm using Postgres.
psql -U keycloak -d keycloak
update realm set ssl_required='NONE';
Restart Keycloak
Example for Postgres DB, by Sairam Krish