This repository has been archived by the owner on Apr 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 134
/
providers.json.template
127 lines (127 loc) · 4 KB
/
providers.json.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"local": {
"provider": "local",
"module": "passport-local",
"usernameField": "username",
"passwordField": "password",
"authPath": "/auth/local",
"successRedirect": "/auth/account",
"failureRedirect": "/local",
"failureFlash": true
},
"ldap": {
"provider": "ldap",
"authScheme":"ldap",
"module": "passport-ldapauth",
"authPath": "/auth/ldap",
"successRedirect": "/auth/account",
"failureRedirect": "/ldap",
"session": true,
"failureFlash": true,
"profileAttributesFromLDAP": {
"login": "uid",
"username": "uid",
"displayName": "displayName",
"email": "mail",
"externalId": "uid"
},
"server":{
"url": "ldap://ldap-server:1234",
"searchBase": "dc=domain,dc=fr",
"searchFilter": "(cn={{username}})"
}
},
"facebook-login": {
"provider": "facebook",
"module": "passport-facebook",
"profileFields": ["gender", "link", "locale", "name", "timezone",
"verified", "email", "updated_time"],
"clientID": "{facebook-client-id-1}",
"clientSecret": "{facebook-client-secret-1}",
"callbackURL": "/auth/facebook/callback",
"authPath": "/auth/facebook",
"callbackPath": "/auth/facebook/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email"],
"failureFlash": true
},
"google-login": {
"provider": "google",
"module": "passport-google-oauth",
"strategy": "OAuth2Strategy",
"clientID": "{google-client-id-1}",
"clientSecret": "{google-client-secret-1}",
"callbackURL": "/auth/google/callback",
"authPath": "/auth/google",
"callbackPath": "/auth/google/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email", "profile"],
"failureFlash": true
},
"twitter-login": {
"provider": "twitter",
"authScheme": "oauth",
"module": "passport-twitter",
"callbackURL": "/auth/twitter/callback",
"authPath": "/auth/twitter",
"callbackPath": "/auth/twitter/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"consumerKey": "{twitter-consumer-key}",
"consumerSecret": "{twitter-consumer-secret}",
"failureFlash": true
},
"facebook-link": {
"provider": "facebook",
"module": "passport-facebook",
"clientID": "{facebook-client-id-2}",
"clientSecret": "{facebook-client-secret-2}",
"callbackURL": "/link/facebook/callback",
"authPath": "/link/facebook",
"callbackPath": "/link/facebook/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email", "user_likes"],
"link": true,
"failureFlash": true
},
"google-link": {
"provider": "google",
"module": "passport-google-oauth",
"strategy": "OAuth2Strategy",
"clientID": "{google-client-id-2}",
"clientSecret": "{google-client-secret-2}",
"callbackURL": "/link/google/callback",
"authPath": "/link/google",
"callbackPath": "/link/google/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email", "profile"],
"link": true,
"failureFlash": true
},
"azure-ad": {
"provider": "azure-ad",
"module": "passport-azure-ad",
"strategy": "OIDCStrategy",
"authScheme" : "openid connect",
"callbackHTTPMethod": "post",
"identityMetadata" : "https://login.microsoftonline.com/<yourteanant>.onmicrosoft.com/.well-known/openid-configuration",
"responseType" : "code id_token",
"responseMode": "form_post",
"allowHttpForRedirectUrl": true,
"validateIssuer": true,
"passReqToCallback": true,
"clientID": "<azure app client id>",
"clientSecret": "<azure app client secret>",
"redirectUrl": "http://localhost:3000/auth/azure/callback", //redirect URL set in azure
"authPath": "/auth/azure",
"callbackPath": "/auth/azure/callback",
"successRedirect": "/auth/account",
"failureRedirect": "/login",
"scope": ["email", "profile"],
"failureFlash": true
}
}