aws s3 bucket getting Referrer Policy: strict-origin-when-cross-origin

Viewed 884

so we are using an S3 bucket and when try and get a resource I get in Chrome:

Referrer Policy: strict-origin-when-cross-origin

I have already applied to S3 bucket:

[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "GET",
            "PUT",
            "POST"
        ],
        "AllowedOrigins": [
            "*"
        ],
        "ExposeHeaders": [],
        "MaxAgeSeconds": 3000
    }
]

and also applied to CloudFront:

enter image description here

and still no luck, keep getting the error below. I am trying to basically disable CORS and allow any origin.

enter image description here

Thank you.

0 Answers
Related