mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
68 lines
1 KiB
TOML
68 lines
1 KiB
TOML
[server]
|
|
address = "0.0.0.0:8080"
|
|
worker_id = "pict-rs-1"
|
|
read_only = false
|
|
|
|
[client]
|
|
pool_size = 100
|
|
timeout = 30
|
|
|
|
[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 = "/mnt"
|
|
|
|
[media]
|
|
max_file_size = 40
|
|
filters = [
|
|
"blur",
|
|
"crop",
|
|
"identity",
|
|
"resize",
|
|
"thumbnail",
|
|
]
|
|
|
|
[media.image]
|
|
max_width = 10000
|
|
max_height = 10000
|
|
max_area = 40000000
|
|
max_file_size = 40
|
|
|
|
[media.animation]
|
|
max_width = 256
|
|
max_height = 256
|
|
max_area = 65536
|
|
max_file_size = 40
|
|
max_frame_count = 100
|
|
|
|
[media.video]
|
|
enable = true
|
|
allow_audio = false
|
|
max_width = 3840
|
|
max_height = 3840
|
|
max_area = 8294400
|
|
max_file_size = 40
|
|
max_frame_count = 900
|
|
video_codec = "vp9"
|
|
|
|
[media.video.quality]
|
|
crf_max = 32
|
|
|
|
[repo]
|
|
type = "sled"
|
|
path = "/mnt/sled-repo"
|
|
cache_capacity = 67108864
|
|
export_path = "/mnt/exports"
|
|
|
|
[store]
|
|
type = "filesystem"
|
|
path = "/mnt/files"
|