[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.example
403 B 25 lines
1Asset_Bucket = "andridk-assets" 2Preview_Bucket = "andridk-assets" 3Preview_Prefix = "s3preview/" 4StorageDomain = "s3.amazonaws.com" 5ListenPort = 8097 6 7[previews.sq200] 8width = 200 9height = 200 10method = "thumbnail" 11 12[previews.thumbnail] 13width = 100 14height = 100 15method = "thumbnail" 16 17[previews.small] 18width = 0 19height = 100 20method = "resize" 21 22[previews.large] 23width = 500 24height = 500 25method = "thumbnail"