-
Notifications
You must be signed in to change notification settings - Fork 15
/
rtmp.nix
73 lines (72 loc) · 1.72 KB
/
rtmp.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{ pkgs, ... }:
let
rtmpOverlay = self: super: {
nginxMainline = super.nginxMainline.override (oldAttrs: {
modules = oldAttrs.modules ++ [ super.nginxModules.rtmp ];
});
#nginxStable = super.nginxStable.override (oldAttrs: {
# modules = oldAttrs.modules ++ [ super.nginxModules.rtmp ];
#});
};
in {
config = {
nixpkgs.overlays = [ rtmpOverlay ];
systemd.services.nginx.preStart = ''
mkdir -p /tmp/{hls,dash}
'';
services.nginx = {
virtualHosts = let
common = {
locations = {
"/hls" = {
root = "/tmp";
};
};
};
in {
"fuspr.net" = common;
"nas.localnet" = common;
};
appendConfig = ''
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record off;
hls on;
hls_path /tmp/hls;
# hls_fragment 3;
# hls_playlist_length 60;
dash on;
dash_path /tmp/dash;
}
}
}
'';
appendHttpConfig = ''
server {
listen 1936;
location /stat {
rtmp_stat all;
}
location /hls {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root /tmp;
add_header Cache-Control no-cache;
add_header Access-Control-Allow-Origin *;
}
location /dash {
root /tmp;
add_header Cache-Control no-cache;
add_header Access-Control-Allow-Origin *;
}
}
'';
};
};
}