nginx-hls-module icon indicating copy to clipboard operation
nginx-hls-module copied to clipboard

Exclude mp4 from download

Open sazanof opened this issue 5 years ago • 1 comments

Hi! Its 2019 year and your module work great! Sorry for my English! Can you explain me, how exclude from download files mp4. Despite the fact that the contents of these files contain the contents of the playlist, I would like to prohibit the download of these files. Tried to implement via alias /var/videos, but this Directive does not work with subfolders

sazanof avatar Nov 06 '19 13:11 sazanof

You can try:

location ~ .mp4$ {
  deny all;
}

rounce avatar Nov 11 '19 09:11 rounce