/ sample-config.json
sample-config.json
 1  {
 2    "providers": {
 3      "s3": {
 4        "access_key": "YOUR_AWS_ACCESS_KEY_ID",
 5        "secret_key": "YOUR_AWS_SECRET_ACCESS_KEY",
 6        "region": "us-east-1",
 7        "endpoint": "",
 8        "use_path_style": false
 9      },
10      "webdav": {
11        "endpoint": "https://your-webdav-server.com",
12        "username": "your-username",
13        "password": "your-password",
14        "auth_method": "basic"
15      },
16      "sftp": {
17        "host": "your-sftp-server.com",
18        "port": 22,
19        "username": "your-username",
20        "password": "your-password",
21        "auth_method": "password"
22      }
23    }
24  }