s3deploy
s3deploy copied to clipboard
A simple tool to deploy static websites to Amazon S3 and CloudFront with Gzip and custom headers support (e.g. "Cache-Control")
Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.41.11 to 1.44.73. Release notes Sourced from github.com/aws/aws-sdk-go's releases. Release v1.44.73 (2022-08-10) Service Client Updates service/dlm: Updates service API and documentation service/ec2: Updates service API and documentation...
Hi - in the `s3deploy.yml` the readme shows examples of adding caching and gzip headers. Will it also work for security-related headers like this? ``` Strict-Transport-Security: max-age=31536000; includeSubDomains; preload X-Frame-Options:...
Fixes https://github.com/bep/s3deploy/issues/53 Example addition to config file: ```yaml dotallowlist: - .well-known ``` Warning: I don't know Golang. This code appears to work, but may not be idiomatic Golang.
Example: The files `.well-known/config.json`, `.well-known/public-key.pem` etc. all reside under the "hidden" folder `.well-known`. We would like to configure the `.well-known` prefix to not be skipped when deploying content to the...
Default `max-age` `Cache-control` value in the project's README.md and tests suggest users to use very high value 630720000 (20y). [RFC 2616](https://www.ietf.org/rfc/rfc2616.txt) mentions the `Expires` value SHOULD NOT be more than...
In lib/deployer.go: ```func (d *Deployer) skipFile(f *osFile) ``` prints newline but ```func (d *Deployer) enqueueUpload(ctx context.Context, f *osFile)``` does not. It makes verbose output a little hard to read if...
I'm running s3deploy on CircleCI using version 2.3.0. The performance is very poor, though I've increased the size of my container to 8 vCPUs and 16gb ram. I've also increased...
It would be convenient if you could include environment variables in the YAML config. In particular, I'm trying to set the Expires header which in my case requires a calculated...
- [x] I examined open issues in this repository. - [x] I read the README file. - [x] I Googled for examples of the `.s3deploy.tml` configuration file. - [x] I...