Add .htaccess to fix CORS issue

This commit is contained in:
Jordan Eldredge 2017-12-24 22:21:30 -05:00
parent f8705b9091
commit cbb3d1198b

11
.htaccess Normal file
View file

@ -0,0 +1,11 @@
# JSMediaTags, which we use for parsing ID3 tags, requires some additional
# headers be enabled when accessing the media file from another origin. Since
# the media files, in our case, are served from a CDN, Amazon CloudFront, on
# a different domain, we are subject to the CORS restrictions.
#
# CloudFront is just a caching layer that sits in front of jordaneldredge.com,
# so we must serve these original files with the correct headers in order for
# CloudFront to return the correct headers.
#
# https://github.com/aadsm/jsmediatags#http-access-control-cors
Header add Access-Control-Allow-Headers "if-modified-since, range"