1<?php 2/** 3 * Default settings for the oauth plugin 4 * 5 * @author Andreas Gohr <andi@splitbrain.org> 6 */ 7 8$conf['auth0-key'] = ''; 9$conf['auth0-secret'] = ''; 10$conf['auth0-domain'] = ''; 11$conf['custom-redirectURI'] = ''; 12$conf['facebook-key'] = ''; 13$conf['facebook-secret'] = ''; 14$conf['github-key'] = ''; 15$conf['github-secret'] = ''; 16$conf['google-key'] = ''; 17$conf['google-secret'] = ''; 18$conf['dataporten-key'] = ''; 19$conf['dataporten-secret'] = ''; 20$conf['keycloak-key'] = ''; 21$conf['keycloak-secret'] = ''; 22$conf['keycloak-authurl'] = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/auth'; 23$conf['keycloak-tokenurl'] = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/token'; 24$conf['keycloak-userinfourl'] = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/userinfo'; 25$conf['yahoo-key'] = ''; 26$conf['yahoo-secret'] = ''; 27$conf['doorkeeper-key'] = ''; 28$conf['doorkeeper-secret'] = ''; 29$conf['doorkeeper-authurl'] = 'https://doorkeeper-provider.herokuapp.com/oauth/authorize'; 30$conf['doorkeeper-tokenurl'] = 'https://doorkeeper-provider.herokuapp.com/oauth/token'; 31$conf['mailRestriction'] = ''; 32$conf['singleService'] = ''; 33$conf['register-on-auth'] = 0; 34