Skip to content

Instantly share code, notes, and snippets.

@rrymm
rrymm / README.md
Created August 13, 2018 02:38 — forked from mrbar42/README.md
Secured HLS setup with Nginx as media server

Secured HLS setup with Nginx as media server

This example is part of this article.

This is an example for an HLS delivery with basic security. Nginx compiled with nginx-rtmp-module & secure-link is used as media server. Features:

  • Domain filtering
  • Referrer filtering
  • Embed buster
@rrymm
rrymm / nginx.conf
Created August 8, 2018 01:30
Nginx transcode example using ffmpeg and two applications
#user nobody;
worker_processes 1;
error_log logs/rtmp_error.log debug;
pid logs/nginx.pid;
events {
worker_connections 1024;
}