pict-rs/dev.toml
asonix 5d4486fdf4
Some checks failed
continuous-integration/drone/push Build is failing
Finish queue implementation update for sled
2023-08-13 19:47:20 -05:00

79 lines
1.3 KiB
TOML

[server]
address = '0.0.0.0:8080'
api_key = 'api-key'
max_file_count = 10
[tracing.logging]
format = 'normal'
targets = 'warn,tracing_actix_web=info,actix_server=info,actix_web=info'
[tracing.console]
buffer_capacity = 102400
[tracing.opentelemetry]
service_name = 'pict-rs'
targets = 'info'
[old_db]
path = 'data/'
[media]
max_file_size = 40
filters = ['blur', 'crop', 'identity', 'resize', 'thumbnail']
[media.image]
format = "webp"
[media.image.quality]
avif = 50
png = 50
jpeg = 75
jxl = 50
webp = 60
[media.animation]
max_width = 2000
max_height = 2000
max_area = 2000000
format = "webp"
[media.animation.quality]
apng = 50
avif = 50
webp = 60
[media.video]
enable = true
allow_audio = true
video_codec = "vp9"
max_area = 884000000
[media.video.quality]
crf_240 = 37
crf_360 = 36
crf_480 = 33
crf_720 = 32
crf_1080 = 31
crf_1440 = 24
crf_2160 = 15
crf_max = 12
[repo]
type = 'sled'
path = 'data/sled-repo-local'
cache_capacity = 67108864
export_path = "data/exports-local"
[store]
type = 'filesystem'
path = 'data/files-local'
# [store]
# type = 'object_storage'
# endpoint = 'http://localhost:3900'
# use_path_style = true
# bucket_name = 'pict-rs'
# region = 'garage'
# access_key = 'GK75d220d95cac26da41a574c6'
# secret_key = '96fa2dc421aaa0026a7e651764958be111fdfdf5260c405b38d85a85f5cd9ea0'