Single HTML file to browse AWS S3 buckets
- Compatible Providers:
- List all files in a table view
- Treat and display
/
in keys as folders - Render preview for Markdown files
- Show
Install
button formanifest.plist
on iOS devices
Click me
- Just download
index.html
and upload it to your bucket.- Adjust config within
index.html
if needed, e.g.const config = { title: 'Bucket Browser', // prefix value with `HTML> ` to render as html, see subtitle subtitle: 'HTML>made with ♥ by <b><a href="https://qoo.monster">qoomon</a></b>', // prefix value with `HTML> ` to render as html logo: 'https://qoomon.github.io/aws-s3-bucket-browser/logo.png', favicon: 'https://qoomon.github.io/aws-s3-bucket-browser/favicon.ico', primaryColor: '#167df0', bucketUrl: undefined, // If bucketUrl is undefined, this script tries to determine bucket Rest API URL from this file location itself. // This will only work for locations like these // * https://s3.amazonaws.com/BUCKET-NAME/index.html // * https://s3.BUCKET-REGION.amazonaws.com/BUCKET-NAME/index.html // * http://BUCKET-NAME.s3-website-BUCKET-REGION.amazonaws.com/index.html // * https://storage.googleapis.com/BUCKET-NAME/index.html // * https://BUCKET-NAME.s3-web.BUCKET-REGION.cloud-object-storage.appdomain.cloud/ // * https://BUCKET-NAME.BUCKET-REGION.digitaloceanspaces.com // * https://BUCKET-NAME.BUCKET-REGION.cdn.digitaloceanspaces.com // If bucketUrl is set manually, ensure this is the bucket Rest API URL, e.g. // * https://s3.amazonaws.com/BUCKET-NAME // * https://storage.googleapis.com/BUCKET-NAME // The URL should return an XML document with <ListBucketResult> as root element. rootPrefix: undefined, // e.g. 'subfolder/' keyExcludePatterns: [/^index\.html$/], // matches againt object key relative to rootPrefix pageSize: 50, bucketMaskUrl: undefined, // If bucketMaskUrl is set file urls will be changed from ${bucketUrl}/${file} to ${bucketMaskUrl}/${file} // bucketMaskUrl: 'https://example.org' // => https://example.org/foo/bar.txt // bucketMaskUrl: document.location.origin // => ${document.location.origin}/foo/bar.txt defaultOrder: 'name-asc' // (name|size|dateModified)-(asc|desc) }
- Adjust config within
-
- Go to
https://s3.console.aws.amazon.com/s3/buckets/<YOUR BUCKET NAME>/?tab=permissions
- Grant public read permission by
Access Control List
orBucket Policy
- Access Control List
- Enable
List objects
forEveryone
- Enable
- Bucket Policy
{ "Version": "2012-10-17", "Statement": [ { "Sid": "PublicRead", "Principal": "*", "Effect": "Allow", "Action": [ "s3:ListBucket", "s3:GetObject" ], "Resource": [ "arn:aws:s3:::<YOUR BUCKET NAME>", "arn:aws:s3:::<YOUR BUCKET NAME>/*" ] } ] }
- Access Control List
- Go to
-
- Depending on your setup you may need to ensure following
CORS Configuration
- Go to
https://s3.console.aws.amazon.com/s3/buckets/<YOUR BUCKET NAME>/?tab=permissions
- Grant Cross Origin Access by following
CORS Configuration
, replacehttp://www.example.com
by your address of bucket browserindex.html
- e.g
http://example.s3-website-eu-central-1.amazonaws.com/index.html
[ { "AllowedHeaders": [ "*" ], "AllowedMethods": [ "GET" ], "AllowedOrigins": [ "http://www.example.com", "https://BUCKET-NAME.s3.amazonaws.com", "https://s3.BUCKET-REGION.amazonaws.com/BUCKET-NAME", ], "ExposeHeaders": [ "x-amz-server-side-encryption", "x-amz-request-id", "x-amz-id-2" ], "MaxAgeSeconds": 3000 } ]
- e.g
- Depending on your setup you may need to ensure following
- Open
<YOUR BUCKET URL>/index.html
in your browser.
Click me
-
- see Self-Hosted
-
- see Self-Hosted
- Open hosted
index.html
in your browser and provide bucket url asbucket
request parameter${INDEX_FILE_LOCATION}?bucket=${S3_BUCKET_URL}
- e.g.
https://qoomon.github.io/aws-s3-bucket-browser/index.html?bucket=https://s3.eu-west-1.amazonaws.com/data.openspending.org
Click me
If you use CloudFront in front of your S3 bucket ensure following CloudFront settings.
- Allowed/Cached HTTP Methods:
GET
,HEAD
,OPTIONS
- Cached Based on Selected Headers:
Whitelist
Access-Control-Request-Headers
Access-Control-Request-Method
Origin
- Query String Forwarding and Caching:
Forward all
Click me
IBM Cloud Object storage only supports virtual host-style addressing, i.e. https://<bucket-name>s3-web.<region>.cloud-object-storage.appdomain.cloud/
for static website hosting. Otherwise follow the instructions
in this tutorial to configure your bucket. In addition, you may need to configure CORS for your bucket.
<CORSConfiguration>
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>