xref: /plugin/oauth/conf/default.php (revision d313403c1ae2bd9fb3dd1e1d64a2d337d8c7c83e)
180852c15SAndreas Gohr<?php
280852c15SAndreas Gohr/**
380852c15SAndreas Gohr * Default settings for the oauth plugin
480852c15SAndreas Gohr *
580852c15SAndreas Gohr * @author Andreas Gohr <andi@splitbrain.org>
680852c15SAndreas Gohr */
780852c15SAndreas Gohr
869d9f829SGerman Lena$conf['auth0-key']           = '';
969d9f829SGerman Lena$conf['auth0-secret']        = '';
1069d9f829SGerman Lena$conf['auth0-domain']        = '';
119683193cSMichael Große$conf['custom-redirectURI']  = '';
1243972fa4SAndreas Gohr$conf['facebook-key']        = '';
1343972fa4SAndreas Gohr$conf['facebook-secret']     = '';
1443972fa4SAndreas Gohr$conf['github-key']          = '';
1543972fa4SAndreas Gohr$conf['github-secret']       = '';
1643972fa4SAndreas Gohr$conf['google-key']          = '';
1743972fa4SAndreas Gohr$conf['google-secret']       = '';
18d0100621SKasper Rynning-Tønnesen$conf['dataporten-key']      = '';
19d0100621SKasper Rynning-Tønnesen$conf['dataporten-secret']   = '';
204c7f12a8SSteve Nolen$conf['keycloak-key']        = '';
214c7f12a8SSteve Nolen$conf['keycloak-secret']     = '';
224c7f12a8SSteve Nolen$conf['keycloak-authurl']    = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/auth';
234c7f12a8SSteve Nolen$conf['keycloak-tokenurl']   = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/token';
244c7f12a8SSteve Nolen$conf['keycloak-userinfourl'] = 'https://keycloak.example.com/auth/realms/{realm}/protocol/openid-connect/userinfo';
25551dc731SAndreas Gohr$conf['yahoo-key']           = '';
26551dc731SAndreas Gohr$conf['yahoo-secret']        = '';
273b2654aaSAndreas Gohr$conf['doorkeeper-key']      = '';
283b2654aaSAndreas Gohr$conf['doorkeeper-secret']   = '';
293b2654aaSAndreas Gohr$conf['doorkeeper-authurl']  = 'https://doorkeeper-provider.herokuapp.com/oauth/authorize';
303b2654aaSAndreas Gohr$conf['doorkeeper-tokenurl'] = 'https://doorkeeper-provider.herokuapp.com/oauth/token';
315b21b630SMichael Große$conf['mailRestriction']     = '';
324304ef94SMichael Große$conf['singleService']       = '';
33*d313403cSAnna Dabrowska$conf['register-on-auth']    = 0;
34