Something went wrong on our end
cantaloupe.properties 1.29 KiB
# Base http setup behind traefik
http.enabled = true
http.host = 0.0.0.0
http.port = 80
http.http2.enabled = false
https.enabled = false
# Explicitly run only IIIF 2
endpoint.iiif.1.enabled = false
endpoint.iiif.2.enabled = true
# Use minio with multiple buckets (for uploads and ingest)
source.static = S3Source
S3Source.endpoint = http://minio:9000
S3Source.region = local
S3Source.top_domain = iiif.ark.localhost
S3Source.lookup_strategy = ScriptLookupStrategy
S3Source.BasicLookupStrategy.bucket.name =
# Use minio also for cache, in a dedicated bucket, for a full week
cache.server.derivative.enabled = true
cache.server.derivative = S3Cache
cache.server.derivative.ttl_seconds = 604800
S3Cache.endpoint = http://minio:9000
S3Cache.region = local
S3Cache.bucket.name = iiif-cache
# Display info level on console
log.application.level = info
log.application.ConsoleAppender.enabled = true
# Log all 4xx/5xx errors. This can cause duplicate logs to show up, since some
# errors will already be logged by some exception handlers, but some errors
# might not be logged otherwise.
log_error_responses = true
# Configure light heap cache
HeapCache.target_size = 2G
HeapCache.persist = false
# Setup JPEG processors compatible with libjpegturbo
processor.downscale_filter = lanczos3
processor.upscale_filter = lanczos3