Skip to content

Commit

Permalink
docu
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Jun 14, 2024
1 parent b7e1385 commit c405341
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/docker-compose-keycloak.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ services:
# Keycloak Server
##################################
keycloak:
image: quay.io/keycloak/keycloak:latest
# latest
image: quay.io/keycloak/keycloak:23.0.5
#container_name: "keycloak"
volumes:
- /etc/localtime:/etc/localtime:ro
Expand Down
19 changes: 19 additions & 0 deletions src/site/markdown/auth/oidc/keycloak.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,25 @@ or with the cli-commandline tool:
$ relaod



## Trouble Shooting

### Disable HTTPS/SSL

Since version 24.x Keycloak increased the security to demand configured HTTPS / SSL, even when starting locally for testing.
If you test keycloak locally in a docker container, you may possible run into problem when trying to login. You will see a message during login like this in your browser window:

<img src="keycloak-https-issue.png" />

This is caused by the increased security.
To disable this new security feature open a bash inside the local container and run the following commands:


/opt/keycloak/bin/kcadm.sh update realms/master -s sslRequired=NONE --server http://localhost:8080 --realm master --user admin --password adminadmin
/opt/keycloak/bin/kcadm.sh update realms/imixs-office-workflow -s sslRequired=NONE --server http://localhost:8080 --realm master --user admin --password adminadmin

This will disable HTTPS for the master realm and the realm 'imixs-office-workflow'. The update is done inside the sql database. Restart your docker container after this change.

## Additional Information

Find more information about Keycloak and Wildfly here:
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c405341

Please sign in to comment.