Yoshi Walsh

Results 133 comments of Yoshi Walsh

I think you need to delete the origin and add a new one.

Check out the "Make a CloudFront Distribution" sectin of [this guide](https://www.davidbaumgold.com/tutorials/host-static-site-aws-s3-cloudfront/#make-a-cloudfront-distribution). They added the origin while creating the distribution, but you can do the same thing when adding an origin...

302 redirects in S3 Static Website Hosting are usually to add a trailing slash. If you add a trailing slash to your redirect's `toPath` it should only need a single...

I don't have much experience with cross-account requests, but would it fix the problem if you [set the Object Ownership settings on your bucket to "bucket owner enforced"](https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html)? The documentation...

Might be worth adding some kind of `exclude` property to the config. I'm thinking an array and inside it we could either have `minimatch` (npm-style) or regex patterns.

At the time I replied to this ticket, I didn't realise we supported per-object parameters with minimatch. Can we just add an ignore option to that?

Could we make a place for object-specific settings, rather than purpose-building something just for ignoring? Then maybe in future we could move params into it? Agree that mixing/matching our config...

This is a strange issue, and I'm not that familiar with the matchPath property. (Which I think might be what's causing the redirect to be created) Could you please try...

Hey @jariz, I'm thinking about this one. In an ideal world we would preserve the path. In httpd you would do this using a rewrite, so instead of returning a...

Hi @karldanninger , I think we'd have to implement [my suggestion](https://github.com/jariz/gatsby-plugin-s3/issues/77#issuecomment-505695286) in order to report 200 without redirecting. I don't have the time to implement this at the moment, but...