-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
50 lines (50 loc) · 992 Bytes
/
config.json.example
File metadata and controls
50 lines (50 loc) · 992 Bytes
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
{
"telegram": {
"token": "SEU_TOKEN_DO_TELEGRAM_AQUI",
"chat_id": "SEU_CHAT_ID_AQUI"
},
"s3": {
"bucket": "SEU_BUCKET_S3_AQUI",
"storage_class": "DEEP_ARCHIVE"
},
"backup": {
"script_path": "/mnt/storage/config/rotina-backup/backup.sh",
"temp_dir": "/tmp",
"max_size_gb": 1024
},
"folders": [
{
"name": "config",
"path": "/mnt/storage/config",
"split_depth": 1,
"enabled": true
},
{
"name": "databases",
"path": "/mnt/storage/databases",
"split_depth": 1,
"enabled": true
},
{
"name": "user1",
"path": "/mnt/storage/user1",
"split_depth": 2,
"enabled": true
},
{
"name": "user2",
"path": "/mnt/storage/user2",
"split_depth": 2,
"enabled": true
}
],
"logging": {
"level": "INFO",
"keep_logs_days": 30
},
"validation": {
"enabled": true,
"keep_local_copy": false,
"deep_validation": true
}
}