-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdevConfig.example.json
More file actions
56 lines (52 loc) · 1.16 KB
/
devConfig.example.json
File metadata and controls
56 lines (52 loc) · 1.16 KB
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
{
"captcha": {
"enabled": false,
"type": "turnstile",
"site_key": "",
"secret_key": "",
"rate": {
"account": 20,
"ip": 10
}
},
"smtp_sender": "TestWiki <test@example.com>",
"smtp_settings": {
"host": "",
"port": 587,
"secure": false,
"auth": {
"user": "",
"pass": ""
}
},
"github_api_token": "",
"check_update": true,
"auto_update": false,
"disable_dev_support": false,
"disable_internal_login": false,
"oauth2_providers": {
// "example": {
// "display_name": "example",
// "disable_auto_register": false,
// "disable_email_whitelist": false,
// "client_id": "",
// "client_secret": "",
// "code_challenge_method": "",
// "authorization_endpoint": "",
// "token_endpoint": "",
// "userinfo_endpoint": "",
// "end_session_endpoint": "",
// "sub_key": "",
// "email_key": "",
// "name_key": "",
// "email_verified_key": "",
// "scopes": [],
// "authorization_query": {},
// "button": {
// "text": "example",
// "buttonColor": "#f85c64",
// "textColor": "#ffffff"
// }
// }
}
}