-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx.conf
More file actions
67 lines (57 loc) · 1.62 KB
/
nginx.conf
File metadata and controls
67 lines (57 loc) · 1.62 KB
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
worker_processes auto;
rtmp_auto_push on;
events {}
rtmp {
server {
listen 1935;
listen [::]:1935 ipv6only=on;
application live {
live on;
record off;
# HLS output
hls on;
hls_path /tmp/hls;
hls_fragment 6s;
hls_playlist_length 60s;
hls_sync 100ms;
hls_type live;
hls_cleanup on;
}
}
}
http {
sendfile on;
tcp_nopush on;
directio 512;
default_type application/octet-stream;
server {
listen 8080;
# HLS streaming endpoint
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 * always;
add_header Access-Control-Allow-Methods 'GET, OPTIONS' always;
add_header Access-Control-Allow-Headers '*' always;
# Handle CORS preflight
if ($request_method = 'OPTIONS') {
add_header Access-Control-Allow-Origin * always;
add_header Access-Control-Allow-Methods 'GET, OPTIONS' always;
add_header Access-Control-Allow-Headers '*' always;
add_header Content-Length 0;
add_header Content-Type text/plain;
return 204;
}
}
# Health check
location /health {
access_log off;
return 200 'ok';
add_header Content-Type text/plain;
}
}
}