-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx.conf
More file actions
54 lines (43 loc) · 894 Bytes
/
nginx.conf
File metadata and controls
54 lines (43 loc) · 894 Bytes
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
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
tcp_nopush on;
# Gzip HLS playlists
gzip on;
gzip_types application/vnd.apple.mpegurl;
server {
listen 80;
root /html/;
index index.html;
# HLS segments and playlists
location /hls/ {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
add_header Cache-Control "no-cache";
add_header Access-Control-Allow-Origin *;
}
}
}
rtmp {
server {
listen 1935;
chunk_size 4000;
application live {
live on;
# HLS output
hls on;
hls_path /html/hls/;
hls_fragment 3s;
hls_playlist_length 18s;
# Disable consuming the stream from nginx as RTMP
allow play 127.0.0.1;
}
}
}