8

我一直在尝试将 Amazon S3 设置为 webfont 文件主机,以便在 Tumblr 上使用 webfonts。

Amazon 建议的 CORS 配置适用于除 Firefox 之外的所有设备,这与 Amazon 在 S3 中启用此新 CORS 功能之前的情况完全相同。

<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
    <AllowedOrigin>http://fonttester.tumblr.com/</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
    <MaxAgeSeconds>3000</MaxAgeSeconds>
    <AllowedHeader>Authorization</AllowedHeader>
</CORSRule>
</CORSConfiguration>

我应该使用不同的配置吗?

4

1 回答 1

3

You have to add the below

<CORSRule>
    <AllowedOrigin>*</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
    <MaxAgeSeconds>3000</MaxAgeSeconds>
    <AllowedHeader>*</AllowedHeader>
</CORSRule>
于 2012-09-06T07:27:35.520 回答