mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-09 22:14:59 +00:00
40 lines
571 B
TOML
40 lines
571 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 = 'data/'
|
||
|
|
||
|
[media]
|
||
|
max_width = 10000
|
||
|
max_height = 10000
|
||
|
max_area = 40000000
|
||
|
max_file_size = 40
|
||
|
enable_silent_video = true
|
||
|
filters = [
|
||
|
'identity',
|
||
|
'resize',
|
||
|
'crop',
|
||
|
'thumbnail',
|
||
|
'blur',
|
||
|
]
|
||
|
skip_validate_imports = false
|
||
|
|
||
|
[repo]
|
||
|
type = 'sled'
|
||
|
path = 'data/sled-repo'
|
||
|
cache_capacity = 67108864
|
||
|
|
||
|
[store]
|
||
|
type = 'filesystem'
|
||
|
path = 'data/files'
|