xref: /plugin/oauth/conf/default.php (revision 4c7f12a8981d1fec0dbea21b1295d3b008a9f917)
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['keycloak-key']        = '';
19$conf['keycloak-secret']     = '';
20$conf['keycloak-authurl']    = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/auth';
21$conf['keycloak-tokenurl']   = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/token';
22$conf['keycloak-userinfourl'] = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/userinfo';
23$conf['yahoo-key']           = '';
24$conf['yahoo-secret']        = '';
25$conf['doorkeeper-key']      = '';
26$conf['doorkeeper-secret']   = '';
27$conf['doorkeeper-authurl']  = 'https://doorkeeper-provider.herokuapp.com/oauth/authorize';
28$conf['doorkeeper-tokenurl'] = 'https://doorkeeper-provider.herokuapp.com/oauth/token';
29$conf['mailRestriction']     = '';
30$conf['singleService']       = '';
31