-
Notifications
You must be signed in to change notification settings - Fork 3
/
nginx.conf
101 lines (75 loc) · 2.32 KB
/
nginx.conf
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
daemon off;
worker_processes auto;
user root;
events {
worker_connections 1024;
}
error_log stderr;
http {
server {
listen 80;
server_tokens off;
location /stat {
rtmp_stat all;
rtmp_stat_stylesheet /config/stat.xsl;
}
location /crossdomain.xml {
default_type text/xml;
return 200 '<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
<site-control permitted-cross-domain-policies="all"/>
<allow-access-from domain="*" secure="false"/>
<allow-http-request-headers-from domain="*" headers="*" secure="false"/>
</cross-domain-policy>';
expires 24h;
}
location /storage {
autoindex on;
rewrite ^/storage(.+) /SAVE_STORAGE_NAME$1 break;
# Serve HLS fragments
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root SAVE_STORAGE_ROOT;
add_header Cache-Control no-cache;
add_header Access-Control-Allow-Origin * always;
add_header Cache-Control no-cache;
}
location /hls {
# Serve HLS fragments
# rewrite ^/hls/(.+) /$1 break;
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root HLS_TMP_FOLDER;
add_header Cache-Control no-cache;
add_header Access-Control-Allow-Origin * always;
add_header Cache-Control no-cache;
}
}
}
rtmp {
server {
listen 1935;
chunk_size 4000;
# application camera {
# # Video with reduced resolution comes here from ffmpeg
# live on;
# }
application hls {
live on;
allow publish 127.0.0.1;
deny publish all;
# Turn on HLS
hls on;
hls_path HLS_TMP_FOLDER/hls;
hls_fragment HLS_FRAGMENT;
hls_playlist_length 1m;
hls_sync 100ms;
hls_nested on;
}
application camera {
live on;