-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdefault.json
89 lines (89 loc) · 1.71 KB
/
default.json
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
{
"host": "localhost",
"port": 3030,
"public": "../public/",
"paginate": {
"default": 10,
"max": 50
},
"authentication": {
"entity": "user",
"service": "users",
"secret": "fcayYMajEwHSO2KmtEeem3fCgDA=",
"authStrategies": [
"jwt",
"local",
"server-otpless-whatsapp",
"local-otpless-whatsapp"
],
"jwtOptions": {
"header": {
"typ": "access"
},
"audience": "https://yourdomain.com",
"issuer": "feathers",
"algorithm": "HS256",
"expiresIn": "365d"
},
"local": {
"usernameField": "email",
"passwordField": "password"
},
"server-otpless-whatsapp": {
"usernameField": "phone",
"passwordField": "code"
},
"local-otpless-whatsapp": {
"usernameField": "phone",
"passwordField": "code"
}
},
"mongodb": "<MongoDB URI>",
"otpless": {
"clientId": "<OTPLess ClientId>",
"clientSecret": "<OTPLess Client Secret>",
"expiry": 300,
"otpLength": 6,
"hash": "saltysaswat"
},
"kafkaConf": {
"bootstrap_servers": [
"localhost:9092"
],
"topics": [
{
"name": "system.metrics",
"numPartitions": 3,
"replicationFactor": 1
},
{
"name": "critical.alerts",
"numPartitions": 3,
"replicationFactor": 1
}
]
},
"keygen": {
"length": 32
},
"smtp": {
"email": "[email protected]",
"password": "mysmtppass",
"host": "smtp.gmail.com",
"port": 587,
"secure": false
},
"alerts": {
"spike": {
"cpu": 90,
"mem": 90,
"disk": 90
},
"cumulative": {
"cpu": 90,
"mem": 90,
"disk": 90,
"durationInMin":5
}
}
}