質問編集履歴
1
S3のCORSポリシーを追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -48,6 +48,19 @@
|
|
48
48
|
Server: AmazonS3
|
49
49
|
```
|
50
50
|
|
51
|
+
当該バケットのCORSポリシーは以下のようになっています。
|
52
|
+
```
|
53
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
54
|
+
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
|
55
|
+
<CORSRule>
|
56
|
+
<AllowedOrigin>*</AllowedOrigin>
|
57
|
+
<AllowedMethod>GET</AllowedMethod>
|
58
|
+
<MaxAgeSeconds>3000</MaxAgeSeconds>
|
59
|
+
<AllowedHeader>*</AllowedHeader>
|
60
|
+
</CORSRule>
|
61
|
+
</CORSConfiguration>
|
62
|
+
```
|
63
|
+
|
51
64
|
もし、何かお気づきのところがあれば、アドバイスいただけると幸いです。
|
52
65
|
|
53
66
|
よろしく御願いします。
|