xref: /plugin/oauth/conf/default.php (revision 69d9f82991950b3b2faf74ef33aee80457a1138b)
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['yahoo-key']           = '';
19$conf['yahoo-secret']        = '';
20$conf['doorkeeper-key']      = '';
21$conf['doorkeeper-secret']   = '';
22$conf['doorkeeper-authurl']  = 'https://doorkeeper-provider.herokuapp.com/oauth/authorize';
23$conf['doorkeeper-tokenurl'] = 'https://doorkeeper-provider.herokuapp.com/oauth/token';
24$conf['mailRestriction']     = '';
25$conf['singleService']       = '';
26