NGINX open () non riuscito (20: non una directory) hls vod con modulo di collegamento sicuro


14

Ho un problema con nginx config per lo streaming hls. Uso il modulo vod di kaltura nginx e provo ad aggiungere ngx_http_secure_link_moduleper proteggere il flusso. La cosa strana è che ho un errore 404 se abilito ngx_http_secure_link_module(registri di seguito). Penso che sia perché non riesce a trovare un file con index.m3u8 alla fine, ma se commento il blocco di collegamento sicuro funziona bene.

Inoltre ho provato ad aggiungere l'alias all'interno del location ~ \.m3u8$ {}blocco, ma non ha funzionato. Che cosa sto facendo di sbagliato? Come proteggere il mio stream?

Il mio link di streaming: https://stream.example.com/hls/c14de868-3130-426a-a0cc-7ff6590e9a1f/index.m3u8?md5=0eNJ3SpBd87NGFF6Hw_zMQ&expires=1609448340

La mia configurazione 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; }
    }
  }
}

Registri NGINX:

cmdlogs

Risposte:


1

Ho appena spostato questo blocco nella directory del server e aggiunto vod hls;all'interno.

location ~ \.m3u8$ {
  include cors.conf;
  vod hls;

  if ($secure_link = "") { return 403; }
  if ($secure_link = "0") { return 403; }
}
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.