mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Aode (lion)
1662f153ce
- Improve error printing (display chain in addition to spantrace) - Fix migration (read main identifier from identifier tree, not filename tree) - Ensure uniqueness for processed images in ConcurrentProcessor (use source identifier in addition to thumbnail path, include extension in thumbnail path) - Update default log levels (make pict-rs quieter) - Add timeout for serving images from object storage (5 seconds)
42 lines
699 B
TOML
42 lines
699 B
TOML
[server]
|
|
address = '0.0.0.0:8080'
|
|
[tracing.logging]
|
|
format = 'normal'
|
|
targets = 'info'
|
|
|
|
[tracing.console]
|
|
buffer_capacity = 102400
|
|
|
|
[tracing.opentelemetry]
|
|
service_name = 'pict-rs'
|
|
targets = 'info'
|
|
|
|
[old_db]
|
|
path = '/mnt'
|
|
|
|
[media]
|
|
max_width = 10000
|
|
max_height = 10000
|
|
max_area = 40000000
|
|
max_file_size = 40
|
|
enable_silent_video = true
|
|
filters = [
|
|
'crop',
|
|
'resize',
|
|
'thumbnail',
|
|
'blur',
|
|
'identity',
|
|
]
|
|
skip_validate_imports = false
|
|
|
|
[repo]
|
|
type = 'sled'
|
|
path = '/mnt/sled-repo'
|
|
cache_capacity = 67108864
|
|
|
|
[store]
|
|
type = 'object_storage'
|
|
bucket_name = 'pict-rs'
|
|
region = 'http://minio:9000'
|
|
access_key = 'XZEZ5B8Y3UCINU1KCVF6'
|
|
secret_key = 'cWbE5LcCK9YH8j1NvhOZocl+vH+b6T5Zvy3z+BZu'
|