mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
843 B
42 lines
843 B
[ |
|
{ |
|
"type": "local", |
|
"id": "local" |
|
}, |
|
{ |
|
"type": "oidc", |
|
"id": "google", |
|
"issuerURL": "https://accounts.google.com", |
|
"clientID": "${CLIENT_ID}", |
|
"clientSecret": "${CLIENT_SECRET}" |
|
}, |
|
{ |
|
"type": "github", |
|
"id": "github", |
|
"clientID": "${CLIENT_ID}", |
|
"clientSecret": "${CLIENT_SECRET}" |
|
}, |
|
{ |
|
"type": "bitbucket", |
|
"id": "bitbucket", |
|
"clientID": "${CLIENT_ID}", |
|
"clientSecret": "${CLIENT_SECRET}" |
|
}, |
|
{ |
|
"type": "ldap", |
|
"id": "ldap", |
|
"host": "127.0.0.1:389", |
|
"useTLS": true, |
|
"useSSL": false, |
|
"skipCertVerification": false, |
|
"baseDN": "ou=People,dc=example,dc=com", |
|
"nameAttribute": "cn", |
|
"emailAttribute": "mail", |
|
"searchBeforeAuth": true, |
|
"searchFilter": "(mail=%u)", |
|
"searchScope": "one", |
|
"searchBindDN": "searchuser", |
|
"searchBindPw": "supersecret", |
|
"bindTemplate": "uid=%u,%b" |
|
} |
|
]
|
|
|