Advertisement
agungprabowo112

CORS configuration aws s3

Feb 17th, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.38 KB | None | 0 0
  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>PUT</AllowedMethod>
  6.     <AllowedMethod>POST</AllowedMethod>
  7.     <AllowedMethod>GET</AllowedMethod>
  8.     <AllowedMethod>DELETE</AllowedMethod>
  9.     <AllowedHeader>*</AllowedHeader>
  10. </CORSRule>
  11. </CORSConfiguration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement