我正在尝试设置S3静态网站托管,但它似乎在我的任何没有在AWS控制台中设置Content-Type
元数据字段的对象上返回403。我无法弄清楚如何使用AWS CLI工具执行此操作。
使用--metadata
选项似乎有效:
$ aws s3api put-object --bucket <bucket> --key foo.html --body foo.html --metadata Content-Type=text/html
{
"ETag": "\"fd5ff7743e5ed1e1c304eb1c34e8e39f\""
}
$ aws s3api head-object --bucket <bucket> --key foo.html
{
"AcceptRanges": "bytes",
"ContentType": "binary/octet-stream",
"LastModified": "Wed, 15 Apr 2015 06:39:48 GMT",
"ContentLength": 189,
"ETag": "\"fd5ff7743e5ed1e1c304eb1c34e8e39f\"",
"Metadata": {
"content-type": "text/html"
}
}
但是对象上的Content-Type
字段在AWS控制台的“元数据”部分中不可见,当我尝试在浏览器中访问该文件时,我得到403.
使用--content-type
选项也不起作用:
$ aws s3api put-object --bucket <bucket> --key foo.html --body foo.html --content-type text/html
{
"ETag": "\"fd5ff7743e5ed1e1c304eb1c34e8e39f\""
}
$ aws s3api head-object --bucket <bucket> --key foo.html
{
"AcceptRanges": "bytes",
"ContentType": "text/html",
"LastModified": "Wed, 15 Apr 2015 06:46:49 GMT",
"ContentLength": 189,
"ETag": "\"fd5ff7743e5ed1e1c304eb1c34e8e39f\"",
"Metadata": {}
}
虽然它似乎设置了某种特殊的ContentType
属性,但AWS控制台中仍然没有Content-Type
元数据字段,也无法在浏览器中访问该文件。
我也尝试过类似的命令(aws s3 cp
,aws s3 sync
),没有运气。我将存储桶策略设置为可公开读取。
答案 0 :(得分:15)
使用--content-type
的第二个示例是为对象设置内容类型的方法。显示的JSON响应是将HTTP响应中的Content-Type
标头映射到ContentType
密钥,但它对应于对象的实际Content-Type
标头。我确认在使用--content-type
时,内容类型值确实显示在控制台的元数据部分中。
$ aws s3api put-object --bucket bucket --key foo.json --body foo.json --content-type application/json --acl public-read
$ aws s3api head-object --bucket jamesls-test-sync --key foo.json
{
"AcceptRanges": "bytes",
"ContentType": "application/json",
"LastModified": "Wed, 15 Apr 2015 17:18:58 GMT",
"ContentLength": 0,
"ETag": "\"d41d8cd98f00b204e9800998ecf8427e\"",
"Metadata": {}
}
同样使用curl,我们可以看到内容类型标题已设置:
$ curl -I https://bucket.s3.amazonaws.com/foo.json
HTTP/1.1 200 OK
x-amz-id-2: ZlSg1aDUBu7z+9gWUg24uRn2TioI0hk2AGBBZ1iVbpUkv8RTrHWovzbHxL/y21Qe
x-amz-request-id: 8568C73EB95EE5A6
Date: Wed, 15 Apr 2015 17:20:42 GMT
Last-Modified: Wed, 15 Apr 2015 17:18:58 GMT
ETag: "d41d8cd98f00b204e9800998ecf8427e"
Accept-Ranges: bytes
Content-Type: application/json
Content-Length: 0
Server: AmazonS3
答案 1 :(得分:3)
在AWS控制台中,即使下拉列表中未列出内容类型,您也可以键入所需的内容类型。
答案 2 :(得分:1)
这不是OP想要的,但是Google在这里派了很多人。
如果要设置S3上已经存在的对象的内容类型而不必再次上载--body
,请参见How to change content type of Amazon S3 Objects