mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-01 18:19:56 +00:00
asonix
0da6159cf1
Garage doesn't work yet. There's an incompatibility between rusty-s3 and garage relevant code: - https://github.com/paolobarbolini/rusty-s3/blob/main/src/actions/multipart_upload/create.rs#L81 - https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/main/src/api/router_macros.rs#L174 Hopefully one of the sides fixes this soon. I asked in the garage matrix channel, and if they point me back to rusty-s3 I'll open an issue there.
42 lines
799 B
TOML
42 lines
799 B
TOML
[server]
|
|
address = '0.0.0.0:8080'
|
|
worker_id = 'pict-rs-1'
|
|
|
|
[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_width = 10000
|
|
max_height = 10000
|
|
max_area = 40000000
|
|
max_file_size = 40
|
|
enable_silent_video = true
|
|
enable_full_video = true
|
|
video_codec = "vp9"
|
|
filters = ['blur', 'crop', 'identity', 'resize', 'thumbnail']
|
|
skip_validate_imports = false
|
|
|
|
[repo]
|
|
type = 'sled'
|
|
path = '/mnt/sled-repo'
|
|
cache_capacity = 67108864
|
|
|
|
[store]
|
|
type = 'object_storage'
|
|
endpoint = 'http://minio:9000'
|
|
use_path_style = true
|
|
bucket_name = 'pict-rs'
|
|
region = 'minio'
|
|
access_key = 'pictrs'
|
|
secret_key = 'pictrspass'
|