-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathnginx.conf
248 lines (194 loc) · 5.71 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
user www-data;
worker_processes 1;
error_log /var/log/nginx/error.log;
events {
worker_connections 1024;
}
# segmenter
live {
store_s3_block dummy_bucket {
url http://127.0.0.1:8001;
access_key AKIAIOSFODNN7EXAMPLE;
secret_key wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY;
service s3;
region us-east-1;
}
store_s3 dummy_bucket;
persist_opaque $hostname:$live_version;
persist_setup_path /store/channel/$channel_id/setup;
persist_index_path /store/channel/$channel_id/index;
persist_delta_path /store/channel/$channel_id/delta;
persist_media_path /store/channel/$channel_id/bucket/$persist_bucket_id;
preset main {
}
preset ll {
ll_segmenter;
}
}
# rtmp input
rtmp {
server {
listen 1935;
application live {
live on;
deny play all;
kmp_ctrl_connect_url http://127.0.0.1:8001/control/;
kmp_ctrl_publish_url http://127.0.0.1:8001/control/;
kmp_ctrl_unpublish_url http://127.0.0.1:8001/control/;
kmp_ctrl_republish_url http://127.0.0.1:8001/control/;
}
}
}
# haivision srt input
srt {
server {
listen 7045;
proxy_pass tcp://127.0.0.1:8002;
proxy_header '$stream_id\n';
}
}
stream {
# mpeg-ts input
server {
listen 8002;
preread_str_delim '\n';
ts;
ts_stream_id $preread_str;
ts_kmp on;
ts_kmp_ctrl_connect_url http://127.0.0.1:8001/control/;
ts_kmp_ctrl_publish_url http://127.0.0.1:8001/control/;
ts_kmp_ctrl_unpublish_url http://127.0.0.1:8001/control/;
ts_kmp_ctrl_republish_url http://127.0.0.1:8001/control/;
}
# segmenter (kmp input)
server {
listen 8003;
live_kmp;
}
# closed caption decoder (kmp input)
server {
listen 8004;
kmp_cc;
kmp_cc_out_ctrl_publish_url http://127.0.0.1:8001/control/;
}
# rtmp output (kmp input)
server {
listen 8005;
resolver 8.8.8.8;
kmp_rtmp;
}
}
http {
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $bytes_sent $request_time "$http_referer" '
'"$http_user_agent" "$http_host" $request_length '
'$pid $connection';
access_log logs/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 60;
keepalive_requests 1000;
client_header_timeout 20;
client_body_timeout 20;
reset_timedout_connection on;
send_timeout 20;
map $uri $channel_id {
~/ch/(?P<result>[^/]+) $result;
default '';
}
map $uri $timeline_id {
~/tl/(?P<result>[^/]+) $result;
default 'main';
}
# external http server (packager)
server {
listen 80;
server_name _;
gzip on;
gzip_types application/vnd.apple.mpegurl video/f4m application/dash+xml text/xml text/vtt;
gzip_proxied any;
add_header Access-Control-Allow-Headers 'Origin,Range,Accept-Encoding,Referer,Cache-Control';
add_header Access-Control-Expose-Headers 'Server,Content-Length,Content-Range,Date,Age';
add_header Access-Control-Allow-Methods 'GET,HEAD,OPTIONS';
add_header Access-Control-Allow-Origin '*';
pckg_uri /ksmp_proxy/;
pckg_channel_id $channel_id;
pckg_timeline_id $timeline_id;
pckg_m3u8_low_latency on;
location /clear/ {
pckg;
}
location /aes128/ {
pckg;
pckg_enc_scheme aes-128;
}
location /cbcs/ {
pckg;
pckg_enc_scheme cbcs;
}
location /ksmp_proxy/ {
internal;
proxy_pass http://127.0.0.1:8001/ksmp/;
subrequest_output_buffer_size 20m;
}
location /publish/ {
client_max_body_size 0;
ts;
ts_stream_id $arg_streamid;
ts_kmp on;
ts_kmp_ctrl_connect_url http://127.0.0.1:8001/control/;
ts_kmp_ctrl_publish_url http://127.0.0.1:8001/control/;
ts_kmp_ctrl_unpublish_url http://127.0.0.1:8001/control/;
ts_kmp_ctrl_republish_url http://127.0.0.1:8001/control/;
}
}
# internal http server
server {
listen 8001;
allow 127.0.0.1/32;
deny all;
client_body_buffer_size 64k;
# controller
location /control/ {
fastcgi_param SCRIPT_FILENAME /opt/media-framework/conf/controller.php;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_pass unix:/run/php/php-fpm.sock;
}
# segmenter (ksmp output)
location /ksmp/ {
live_ksmp;
}
# api endpoints
location /api/live/ {
live_api write=on upsert=on;
}
location /api/kmp_out/ {
kmp_out_api write=on;
}
location /api/kmp_cc/ {
kmp_cc_api write=on;
}
location /api/kmp_rtmp/ {
kmp_rtmp_api write=on;
}
location /api/rtmp_kmp/ {
rtmp_kmp_api write=on;
}
location /api/ts_kmp/ {
ts_kmp_api write=on;
}
# s3 stub
location /store/ {
root /tmp/;
dav_methods PUT;
create_full_put_path on;
client_max_body_size 100m;
}
}
}