npm install
-
Add a public openid-connect client in your keycloak realm
-
Download the
keycloak.json
file for your client and put it in the config directory. -
Allow this app from keycloak (
jitsi-keycloak
running on https://auth.meet.example.com): -
If you want to have an avatar displayed in jitsi you can add an avatar custom attribute in keycloak to your desired users:
- Set
ENABLE_AUTH=1
,AUTH_TYPE=jwt
andJWT_APP_ID=jitsi
in your jitsi environment - Set
JWT_APP_SECRET
to a random string (e.g.node -e "console.log(require('crypto').randomBytes(24).toString('base64'));"
) - To enable an automatic redirect from jitsi to login set the url of this container
TOKEN_AUTH_URL=https://auth.example.com/{room}
JITSI_SECRET
with the shared secret from jitsiJWT_APP_SECRET
.DEFAULT_ROOM
with a default room name e.g.meeting
JITSI_URL
with the url of your jitsi server e.g.https://meet.example.com
ALLOWED_SUB
with the allowed sub, the default is*
ALLOWED_ROOM
with the allowed room, the default is*
npm run dev
docker build -t jitsi-keycloak .
docker run -it --rm -p 3000:3000 -v $(pwd)/config:/config jitsi-keycloak
docker-compose up -d