Skip to content

Caddy plugin to generate file indexes of S3 buckets to browse via Web Client

License

Notifications You must be signed in to change notification settings

caddy-plugins/caddy-s3browser

 
 

Repository files navigation

Caddy s3browser

Example config

dl.example.com {
	s3browser {
		key ADDKEYHERE
		secret ADDSECRETHERE
		bucket ADDBUCKETHERE
		endpoint nyc3.digitaloceanspaces.com
		region us-west-2
		secure true
		refresh 5m
		debug false
	}
	proxy / https://examplebucket.nyc3.digitaloceanspaces.com {
		header_upstream Host examplebucket.nyc3.digitaloceanspaces.com
	}
}

This will provide directory listing for an S3 bucket (you are able to use minio, or other S3 providers). To serve files via Caddy as well you'll need to use the proxy directive as well. The server must be able to have public access to the files in the bucket.

Note: For performance reasons, the file listing is fetched once every 5minutes to reduce load on S3 (or S3 equivalent).

Prior Art

About

Caddy plugin to generate file indexes of S3 buckets to browse via Web Client

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 89.4%
  • Go 10.2%
  • Dockerfile 0.4%