https://github.com/mxab/meteor-keycloak
https://github.com/mxab/meteor-keycloak
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mxab/meteor-keycloak
- Owner: mxab
- Created: 2017-07-11T22:48:14.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-06-02T19:02:42.000Z (about 2 years ago)
- Last Synced: 2025-11-19T05:02:47.761Z (8 months ago)
- Language: JavaScript
- Size: 8.79 KB
- Stars: 7
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-keycloak - Meteor Keycloak Accounts
README
# Setup
```
meteor add mxab:accounts-keycloak
```
## Local setup with docker
```
docker run -p 8080:8080 -e KEYCLOAK_USER=admin -e KEYCLOAK_PASSWORD=admin jboss/keycloak
```
Setup keycloak under http://localhost:8080/auth/admin/
1. Create a new realm in keycloak
2. Create a client in this realm
Register OIDC settings, something like this:
```
ServiceConfiguration.configurations.upsert(
{service: 'keycloak'},
{
$set: {
"realm": "my-realm-123",
"auth-server-url": "http://localhost:8080/auth",
"ssl-required": "external",
"resource": "the-meteor-app-client-id",
"public-client": true,
"use-resource-role-mappings": true,
"bearer-only": true,
"realm-public-key": "PUBLICRSAKEY12312313"
}
}
);
```