NGINX open()が失敗しました(20:ディレクトリではありません)hls vod with secure link module


14

HLSストリーミングのnginx設定に問題があります。私はkaltura nginx vodモジュールを使用してngx_http_secure_link_module、ストリームを保護するために追加しようとします。奇妙なことに、有効にすると404エラーが発生しますngx_http_secure_link_module(以下のログ)。これは、末尾にindex.m3u8が付いているファイルを見つけられないためだと思いますが、セキュアリンクブロックをコメントアウトすると、正常に動作します。

またlocation ~ \.m3u8$ {}、ブロック内にエイリアスを追加しようとしましたが、機能しませんでした。何が悪いのですか?ストリームを保護するには?

私のストリームリンク: https://stream.example.com/hls/c14de868-3130-426a-a0cc-7ff6590e9a1f/index.m3u8?md5=0eNJ3SpBd87NGFF6Hw_zMQ&expires=1609448340

私の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; }
    }
  }
}

NGINXログ:

コマンドログ

回答:


1

このブロックをサーバーディレクトリに移動し、中に追加しましたvod hls;

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

  if ($secure_link = "") { return 403; }
  if ($secure_link = "0") { return 403; }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.