We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59fe409 commit c0483b7Copy full SHA for c0483b7
course-02/exercises/udacity-c2-basic-server/s3_cors.xml
@@ -0,0 +1,12 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
3
+<CORSRule>
4
+ <AllowedOrigin>*</AllowedOrigin>
5
+ <AllowedMethod>POST</AllowedMethod>
6
+ <AllowedMethod>GET</AllowedMethod>
7
+ <AllowedMethod>PUT</AllowedMethod>
8
+ <AllowedMethod>DELETE</AllowedMethod>
9
+ <AllowedMethod>HEAD</AllowedMethod>
10
+ <AllowedHeader>*</AllowedHeader>
11
+</CORSRule>
12
+</CORSConfiguration>
0 commit comments