summaryrefslogtreecommitdiff
path: root/config/config-local-unix.sample.json
blob: 941d995ec16656c76f1320c7c5c9993aed6bc40b (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
{
    "MaxProcessThreads": 4,
    "MaxPreProcessThreads": 12,
    "LogLevel": "debug",
    "Input": {
        "Storage": {
            "Type": "local-unix",
            "Config": {
                "MaxDepth": 3,
                "Path": "/tmp/thumbnailing/full/"
            }
        },
        "KnownExtensions": [
            "jpg",
            "jpeg",
            "png"
        ]
    },
    "Converter": {
        "Type": "webp",
        "Config": {
            "Quality": 80,
            "Size": {
                "MaxWidth": 800,
                "MaxHeight": 0
            }
        },
        "Output": {
            "RewriteOn": "UnequalHashInCache",
            "Storage": {
                "Type": "local-unix",
                "Config": {
                    "Path": "/tmp/thumbnailing/thumbnails/",
                    "DirPermissionMode": "0755",
                    "FilePermissionMode": "0644",
                    "AttributesImplementation": "xattr"
                }
            }
        }
    }
}