Add 'Cache-Control: no-cache' header

This commit is contained in:
Luca 2020-09-21 19:49:48 +02:00
parent 41841c4873
commit 10e20c96c4
1 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,8 @@ server {
listen 80;
location /hls {
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Origin *;
add_header Cache-Control no-cache;
root /var/www/live;
}