pict-rs/defaults.toml

40 lines
717 B
TOML
Raw Normal View History

2022-03-28 04:27:07 +00:00
[server]
address = '0.0.0.0:8080'
2022-03-29 18:18:47 +00:00
worker_id = 'pict-rs-1'
2022-03-28 04:27:07 +00:00
[tracing.logging]
format = 'normal'
2022-03-29 01:48:12 +00:00
targets = 'warn,tracing_actix_web=info,actix_server=info,actix_web=info'
2022-03-28 04:27:07 +00:00
[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
max_frame_count = 900
2022-03-28 04:27:07 +00:00
enable_silent_video = true
enable_full_video = false
2022-10-01 15:17:32 +00:00
video_codec = 'vp9'
filters = ['blur', 'crop', 'identity', 'resize', 'thumbnail']
2022-03-28 04:27:07 +00:00
skip_validate_imports = false
cache_duration = 168
2022-03-28 04:27:07 +00:00
[repo]
type = 'sled'
path = '/mnt/sled-repo'
cache_capacity = 67108864
[store]
type = 'filesystem'
path = '/mnt/files'