No description
Find a file
Renovate Bot 5b93f0bfe6
All checks were successful
/ build-container (push) Successful in 1m2s
chore(deps): update module github.com/minio/minio-go/v7 to v7.0.79
2024-10-24 21:04:30 +00:00
.forgejo/workflows Update docker/build-push-action action to v6 2024-09-08 07:04:11 +00:00
config.go Licensing stuff 2024-03-31 22:51:10 -07:00
Containerfile Update golang Docker tag to v1.23 2024-09-08 07:04:48 +00:00
go.mod chore(deps): update module github.com/minio/minio-go/v7 to v7.0.79 2024-10-24 21:04:30 +00:00
go.sum chore(deps): update module github.com/minio/minio-go/v7 to v7.0.79 2024-10-24 21:04:30 +00:00
LICENSE Licensing stuff 2024-03-31 22:51:10 -07:00
main.go Licensing stuff 2024-03-31 22:51:10 -07:00
README.md update README 2024-02-18 14:48:43 -08:00
renovate.json renovate: automerge minor + patch 2024-09-13 13:30:11 -07:00
serve.go add CORS header 2024-07-06 00:54:32 -07:00

s3staticsite

host static sites backed by an s3 bucket

configuration via environment variables:

  • BIND (default :5000) address:port to bind to. Address may be blank to bind to all addresses.
  • S3_ENDPOINT the S3 server endpoint to use
  • ACCESS_KEY_ID S3 access key
  • SECRET_ACCESS_KEY S3 access key

To serve a site with this software, make an S3 bucket named the domain you'll be serving.

  • index.html will be served for requests to the root.
  • There is currently no support for custom 404 pages