Files
backup-manager/config.json.example
2022-10-17 23:49:04 +08:00

34 lines
551 B
JSON

{
"timeHour": 2,
"timeMinute": 0,
"workingDir": "/mnt/backups/",
"backupPeriods": [
{
"interval": 1,
"count": 3
},
{
"interval": 30,
"count": 2
},
{
"interval": 180,
"count": 1
}
],
"hosts": [
{
"name": "example",
"ipAddr": "192.168.1.100",
"port": 2222,
"username": "root",
"privKey": "/id_rsa",
"remoteDir": "/opt/remote/dir",
"exclude": [
"/opt/remote/dir/exclude1",
"/opt/remote/dir/exclude2"
]
}
]
}