summaryrefslogtreecommitdiff
path: root/config/config-b2.sample.json
blob: d3d772eb47409975115255fb6a20d9b062cf7edb (plain)
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
{
    "ForceRewrite": false,
    "MaxConcurrentJobs": 4,
    "LogLevel": "info",
    "Input": {
        "Storage": {
            "Type": "b2",
            "Config": {
                "BucketName": "sayana-photos",
                "Region": "eu-central-003",
                "Prefix": "full/",
                "KeyID": "${B2_KEY_ID}",
                "ApplicationKey": "${B2_APPLICATION_KEY}"
            }
        },
        "KnownExtensions": [
            "jpg",
            "jpeg",
            "png"
        ]
    },
    "Converter": {
        "Type": "webp",
        "Config": {
            "Quality": 80,
            "Size": {
                "MaxWidth": 800,
                "MaxHeight": 0
            }
        }
    },
    "Output": {
        "Storage": {
            "Type": "b2",
            "Config": {
                "BucketName": "sayana-photos",
                "Region": "eu-central-003",
                "Prefix": "thumbnails/",
                "KeyID": "${B2_KEY_ID}",
                "ApplicationKey": "${B2_APPLICATION_KEY}"
            }
        }
    }
}