forked from mystiq/dex
a9dce1c11e
Updates flags in dex-worker for no-db mode to work with default static files.
42 lines
843 B
Text
42 lines
843 B
Text
[
|
|
{
|
|
"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"
|
|
}
|
|
]
|