質問編集履歴

1

S3のCORSポリシーを追記

2018/06/27 07:50

投稿

akihiro0117
akihiro0117

スコア32

test CHANGED
File without changes
test CHANGED
@@ -98,6 +98,32 @@
98
98
 
99
99
 
100
100
 
101
+ 当該バケットのCORSポリシーは以下のようになっています。
102
+
103
+ ```
104
+
105
+ <?xml version="1.0" encoding="UTF-8"?>
106
+
107
+ <CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
108
+
109
+ <CORSRule>
110
+
111
+ <AllowedOrigin>*</AllowedOrigin>
112
+
113
+ <AllowedMethod>GET</AllowedMethod>
114
+
115
+ <MaxAgeSeconds>3000</MaxAgeSeconds>
116
+
117
+ <AllowedHeader>*</AllowedHeader>
118
+
119
+ </CORSRule>
120
+
121
+ </CORSConfiguration>
122
+
123
+ ```
124
+
125
+
126
+
101
127
  もし、何かお気づきのところがあれば、アドバイスいただけると幸いです。
102
128
 
103
129