-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
49 lines (49 loc) · 969 Bytes
/
config.example.json
File metadata and controls
49 lines (49 loc) · 969 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
{
"settings": {
"backupOnInit": false,
"scheduleExpression": "0 3 * * *",
"maxFileAge": 7,
"allowSelfSigned": false
},
"dbs": [
{
"type": "mysql",
"host": "localhost",
"user": "myuser",
"password": "mypassword",
"name": "mydb"
},
{
"type": "docker-postgres",
"container": "my-postgres",
"user": "pguser",
"name": "mydb"
}
],
"files": [
{
"name": "my-files",
"source": "/path/to/directory",
"exclude": ["*/cache/*", "*.log"]
},
{
"type": "docker-volume",
"name": "my-uploads",
"container": "my-app",
"containerPath": "/app/uploads"
}
],
"providers": [
{
"name": "my-sftp-server",
"type": "sftp",
"destination": "/remote/backup/path",
"connection": {
"host": "192.168.1.100",
"port": 22,
"username": "backup",
"password": "changeme"
}
}
]
}