-
Notifications
You must be signed in to change notification settings - Fork 17
/
sample_config.yml
66 lines (53 loc) · 1.94 KB
/
sample_config.yml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
gallery:
# Path to the root of your photo files
input_path: "/path/to/my/photos"
# Path to output the site to
# Default: "site/"
output_path: "site/"
# Setting to True will force a full rebuild of the gallery photos.
# Setting to False will only generate files which are missing or added
# Default: False
overwrite: False
# The number of parallel processing tasks that will be used
# Default: <number_of_cores> / 2
# parallel_tasks: 1
# Attempt to orient the photo based on embedded EXIF data
# Default: exif_transpose: False
exif_transpose: False
albums:
# Recursively process sub-folders as albums
# Default: recursive: True
recursive: True
# Pattern for album name creation of sub albums
# Following substitutions are available:
# - {parent_album} will be replaced with the parent album
# - {album} will be replaced with the album name
# Default: "{parent_album} > {album}"
recursive_name_pattern: "{parent_album} > {album}"
people:
# Face Tag detection.
# Setting to True adds a faces button and virtual albums for detected people
# Setting to False disables the feature
# Default: True
enable: True
watermark:
# Enable placement of watermark in bottom right corner of photos.
# Default: True
enable: True
# Specify path to custome watermark
# Should be a transparent png
# Default: "web/src/images/fussel-watermark.png"
path: "web/src/images/fussel-watermark.png"
# Watermark size ratio (0.0 -> 1.0)
# Default: 0.3
size_ratio: 0.3
site:
# Set http_root to the root url you intend to host the site.
# If you host this service at http://<site>/ set to http://<site>/'.
# If you host this service at http://<site>/my/photo/album/ set to 'http://<site>/my/photo/album/'
# Include trailing slash
# Default: "/"
http_root: "/"
# Title shown at the top of the browser tab
# Default: "Fussel Gallery"
title: "Fussel Gallery"