Tengo un problema con la configuración de nginx para la transmisión hls. Yo uso Kaltura nginx VOD módulo y el intento agregar ngx_http_secure_link_module
a proteger a la corriente. Lo extraño es que tengo un error 404 si habilito ngx_http_secure_link_module
(registros a continuación). Creo que se debe a que no puede encontrar un archivo con index.m3u8 al final, pero si comento un bloqueo de enlace seguro, funciona bien.
También intenté agregar alias dentro del location ~ \.m3u8$ {}
bloque, pero no funcionó. ¿Qué estoy haciendo mal? ¿Cómo proteger mi transmisión?
Mi enlace de transmisión: https://stream.example.com/hls/c14de868-3130-426a-a0cc-7ff6590e9a1f/index.m3u8?md5=0eNJ3SpBd87NGFF6Hw_zMQ&expires=1609448340
Mi configuración NGINX:
server {
listen 9000;
server_name localhost;
# root /srv/static;
location ^~ /hls/ {
# the path to c14de868-3130-426a-a0cc-7ff6590e9a1f file
alias /srv/static/videos/1/;
# file with cors settings
include cors.conf;
vod hls;
# 1. Set secret variable
set $secret "s3cr3t";
# 2. Set secure link
secure_link $arg_md5,$arg_expires;
secure_link_md5 "$secure_link_expires $secret";
# if I comment this block everything works fine (but security)
location ~ \.m3u8$ {
if ($secure_link = "") { return 403; }
if ($secure_link = "0") { return 403; }
}
}
}
Registros NGINX: