pict-rs/defaults.toml

62 lines
954 B
TOML
Raw Normal View History

2022-03-28 04:27:07 +00:00
[server]
2023-02-04 23:32:36 +00:00
address = "0.0.0.0:8080"
worker_id = "pict-rs-1"
client_pool_size = 100
2022-03-28 04:27:07 +00:00
[tracing.logging]
2023-02-04 23:32:36 +00:00
format = "normal"
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]
2023-02-04 23:32:36 +00:00
service_name = "pict-rs"
targets = "info"
2022-03-28 04:27:07 +00:00
[old_db]
2023-02-04 23:32:36 +00:00
path = "/mnt"
2022-03-28 04:27:07 +00:00
[media]
max_file_size = 40
2023-02-04 23:32:36 +00:00
filters = [
"blur",
"crop",
"identity",
"resize",
"thumbnail",
]
2022-03-28 04:27:07 +00:00
2023-07-13 22:42:21 +00:00
[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
2023-02-04 23:52:23 +00:00
max_frame_count = 100
2023-02-04 23:32:36 +00:00
2023-07-13 22:42:21 +00:00
[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"
2022-03-28 04:27:07 +00:00
[repo]
2023-02-04 23:32:36 +00:00
type = "sled"
path = "/mnt/sled-repo"
2022-03-28 04:27:07 +00:00
cache_capacity = 67108864
export_path = "/mnt/exports"
2022-03-28 04:27:07 +00:00
[store]
2023-02-04 23:32:36 +00:00
type = "filesystem"
path = "/mnt/files"