Reply To: Resources Not Loading – Random Points in Experiment

PennController for IBEX Forums Support Resources Not Loading – Random Points in Experiment Reply To: Resources Not Loading – Random Points in Experiment

#8326
Jeremy
Keymaster

Yeah the S3 link does not send the header either, so you’ll face the same problem

I just realized the link I gave to the other post about S3 does not discuss CORS settings. AWS has documentation about how to create a CORS configuration. In your case, you want to use a JSON configuration like this:

[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "GET"
        ],
        "AllowedOrigins": [
            "https://farm.pcibex.net"
        ],
        "ExposeHeaders": []
    }
]

Jeremy