[READ-ONLY] Mirror of https://github.com/andrioid/s3preview. Preview serving microservice for s3. Generates and uploads any missing thumbnails. Redirects to existing.
0

Configure Feed

Select the types of activity you want to include in your feed.

s3preview / config.toml
371 B 23 lines
1# Squared 200 pixel thumbnail (crop) 2[previews.sq200] 3width = 200 4height = 200 5method = "thumbnail" 6 7# Squared 100 pixel thumbnail 8[previews.thumbnail] 9width = 100 10height = 100 11method = "thumbnail" 12 13# 100 pixel high scaled 14[previews.small] 15width = 0 16height = 100 17method = "resize" 18 19# Squared 500 pixel thumb 20[previews.large] 21width = 500 22height = 500 23method = "thumbnail"