openaq / openaq-upload

Batch uploader for OpenAQ
MIT License
2 stars 0 forks source link

Upload testing #9

Closed nbumbarger closed 7 years ago

nbumbarger commented 7 years ago

@jflasher, would you mind adding a permissive CORS policy to the upload bucket, to help me finish testing? I spoke with @danielfdsilva and gathered that it shouldn't be much of a security problem in light of the signed URLs.

jflasher commented 7 years ago

Following policy is now on the bucket.

<CORSConfiguration>
    <CORSRule>
        <AllowedOrigin>*</AllowedOrigin>
        <AllowedMethod>PUT</AllowedMethod>
        <MaxAgeSeconds>3000</MaxAgeSeconds>
        <AllowedHeader>*</AllowedHeader>
    </CORSRule>
</CORSConfiguration>
nbumbarger commented 7 years ago

Thanks, @jflasher!