1
0
mirror of https://git.waldn.net/git/knotteye/satyr.git synced 2025-05-07 03:59:25 +00:00

Fix CORS issues in reccomended nginx config

This commit is contained in:
knotteye 2020-10-24 22:52:59 -05:00
parent 07cba66096
commit fe3ec1bd75

@ -18,6 +18,10 @@ server {
}
location ~* \.(mpd|m4s|mp4)$ {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
# nginx can serve static files faster than node
# this should improve performance
root /opt/satyr/site/;