nginx-hls-module
nginx-hls-module copied to clipboard
Exclude mp4 from download
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
You can try:
location ~ .mp4$ {
deny all;
}