-
Notifications
You must be signed in to change notification settings - Fork 0
/
configs.json
50 lines (50 loc) · 1.54 KB
/
configs.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
{
"customer1": {
"LocalPath": "/local/path",
"RemotePath": "/remote/path",
"SftpServer": "sftp.example.com",
"SftpPort": "22",
"SftpUserName": "username",
"SftpPassword": "ENCRYPTED_PASSWORD",
"LogFilePath": "/path/to/logs",
"ArchivePath": "/path/to/archive",
"DeleteFoldersAfterArchive": true,
"FileExtensions": "txt,csv",
"CleanupThresholdDays": 90,
"UploadRootOnly": false,
"TempRemotePath": "/temp/path",
"UseTempFolder": true,
"NewExtension": ".bak",
"DownloadEnabled": true,
"DownloadRemotePath": "/download/path",
"DownloadLocalPath": "/download/local/path",
"DownloadFileExtensions": "txt,csv",
"DownloadRootOnly": false,
"DeleteRemoteFileAfterDownload": true,
"Schedule": "@daily"
},
"customer2": {
"LocalPath": "/local/path",
"RemotePath": "/remote/path",
"SftpServer": "sftp.example.com",
"SftpPort": "22",
"SftpUserName": "username",
"SftpPassword": "ENCRYPTED_PASSWORD",
"LogFilePath": "/path/to/logs",
"ArchivePath": "/path/to/archive",
"DeleteFoldersAfterArchive": true,
"FileExtensions": "txt,csv",
"CleanupThresholdDays": 90,
"UploadRootOnly": false,
"TempRemotePath": "/temp/path",
"UseTempFolder": true,
"NewExtension": ".bak",
"DownloadEnabled": true,
"DownloadRemotePath": "/download/path",
"DownloadLocalPath": "/download/local/path",
"DownloadFileExtensions": "txt,csv",
"DownloadRootOnly": false,
"DeleteRemoteFileAfterDownload": true,
"Schedule": "@every 0h1m"
}
}