If you are using Powered Cache on RunCloud (nginx) you will likely need to add CORS rules for CDN integration.

  1. Add a custom config and use “headers” as the configuration type

2. Add the configuration

location ~* .(jpg|jpeg|png|gif|ico|css|js|svg|eot|woff|woff2|ttf|otf)$ {
	add_header Access-Control-Allow-Origin *;
}