Latest Chrome (46.0.2490.7) fails to load fonts over https CORS from S3 bucket Latest Chrome (46.0.2490.7) fails to load fonts over https CORS from S3 bucket google-chrome google-chrome

Latest Chrome (46.0.2490.7) fails to load fonts over https CORS from S3 bucket


Only work around Ive found so far is to proxy the fonts via the same domain server. Not ideal.

I opened a ticket: https://code.google.com/p/chromium/issues/detail?id=544879


try changing CORS Policy of your bucket

Goto

Amazon S3 > [your-bucket] > Permissions >  CORS configuration

and Use the following configuration

<!-- Sample policy --><CORSConfiguration>    <CORSRule>        <AllowedOrigin>*</AllowedOrigin>        <AllowedMethod>GET</AllowedMethod>        <MaxAgeSeconds>3000</MaxAgeSeconds>        <AllowedHeader>*</AllowedHeader>    </CORSRule>    <CORSRule>        <AllowedOrigin>*</AllowedOrigin>        <AllowedMethod>GET</AllowedMethod>    </CORSRule></CORSConfiguration>

Ref: Official doc here