Skip to content

Instantly share code, notes, and snippets.

@yanivmn
yanivmn / open-source-sso.md
Last active April 11, 2024 13:33 — forked from bmaupin/open-source-sso.md
Comparison of open-source SSO implementations
Aerobase Keycloak WSO2 Identity Server Gluu CAS OpenAM Shibboleth IdP
OpenID Connect/OAuth support yes yes yes yes yes yes third-party
Multi-factor authentication yes yes yes yes yes yes yes
Admin UI yes yes yes yes yes yes no
OpenJDK support yes yes yes yes no
Identity brokering yes yes yes
Middleware NGINX, Wildfly Wildfly, JBOSS WSO2 Carbon Jetty, Apache HTTPD any Java app server any Java app server Jetty, Tomc
@yanivmn
yanivmn / angular-build.sh
Last active May 24, 2018 19:56
Aerobase Angular started build command
# Install dependencies and start application
npm install
npm start
@yanivmn
yanivmn / environment.ts
Last active April 21, 2019 08:15
Aerobase Auth configuration example
...
// Add here your aerobase setup infos
let aerobaseConfig: AerobaseConfig = {
url: 'https://example.aerobase.io/auth/',
realm: 'example',
clientId: 'example-client'
};
...
# If you are using your own cordova project first run
# cordova plugin add aerobase-cordova-push
cordova platform add android
cordova build
cordova emulate
var pushConfig = {
"pushServerURL": "https://cloud.aerobase.io/unifiedpush-server/",
"android": {
senderID: "YOUR Sender ID",
variantID: "YOUR Variant ID",
variantSecret: "Your Variant Secret"
}
};