forked from evilsocket/arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_config.json
41 lines (41 loc) · 1.2 KB
/
sample_config.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
{
"address": "0.0.0.0",
"port": 8443,
"secret": "",
"certificate": "~/arc-certificate.pem",
"key": "~/arc-key.pem",
"username": "arc",
"password": "$2a$10$RuOcSEwPNNFlA/lxjpRY3.3J0tR0LG/FyfG/IXolgdDxPh7.urgGe",
"database": "~/db",
"token_duration": 60,
"compression": true,
"scheduler": {
"enabled": true,
"period": 10,
"reports": {
"enabled": false,
"rate_limit": 60,
"filter": [ "login_ok", "login_ko", "token_ko", "update", "record_expired" ],
"to": "[email protected]",
"smtp":{
"address": "smtp.gmail.com",
"port": 587,
"username": "[email protected]",
"password": "your smtp password"
},
"pgp": {
"enabled": true,
"keys":{
"private": "~/server.private.key.asc",
"public": "~/my.public.key.asc"
}
}
}
},
"backups": {
"enabled": false,
"period": 1800,
"folder": "/some/backup/path/",
"run": "scp arc-backup.tar user@backup-server:/media/arc_backup/"
}
}