mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-05-07 17:49:24 +00:00
Fix CORS issues in reccomended nginx config
This commit is contained in:
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/;
|
||||
|
Loading…
x
Reference in New Issue
Block a user