PennController for IBEX › Forums › Support › Resources Not Loading – Random Points in Experiment › Reply To: Resources Not Loading – Random Points in Experiment
August 4, 2022 at 5:30 pm
#8326
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