| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- daemon off;
- error_log /dev/stdout info;
- events {
- worker_connections 1024;
- }
- rtmp {
- server {
- listen ${RTMP_PORT};
- chunk_size 4000;
- application stream {
- live on;
- exec_push ${EXECPUSH};
- }
- application hls {
- live on;
- hls on;
- hls_fragment_naming system;
- hls_fragment 5;
- hls_playlist_length 10;
- hls_path /opt/data/hls;
- hls_nested on;
- ${HLSVARIANTS}
- }
- }
- }
- http {
- root /www/static;
- sendfile off;
- tcp_nopush on;
- server_tokens off;
- access_log /dev/stdout combined;
- # Uncomment these lines to enable SSL.
- # ssl_protocols TLSv1.2 TLSv1.3;
- # ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
- # ssl_prefer_server_ciphers off;
- # ssl_session_cache shared:SSL:10m;
- # ssl_session_timeout 1d;
- server {
- listen ${HTTP_PORT};
- # Uncomment these lines to enable SSL.
- # Update the ssl paths with your own certificate and private key.
- # listen ${HTTPS_PORT} ssl;
- # ssl_certificate /opt/certs/example.com.crt;
- # ssl_certificate_key /opt/certs/example.com.key;
- location /hls {
- types {
- application/vnd.apple.mpegurl m3u8;
- video/mp2t ts;
- }
- root /opt/data;
- add_header Cache-Control no-cache;
- add_header Access-Control-Allow-Origin *;
- }
- location /live {
- alias /opt/data/hls;
- types {
- application/vnd.apple.mpegurl m3u8;
- video/mp2t ts;
- }
- add_header Cache-Control no-cache;
- add_header Access-Control-Allow-Origin *;
- }
- location /stat {
- rtmp_stat all;
- rtmp_stat_stylesheet stat.xsl;
- }
- location /stat.xsl {
- root /www/static;
- }
- location /crossdomain.xml {
- default_type text/xml;
- expires 24h;
- }
- }
- }
|