We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rtmp { server { listen 1935; chunk_size 4096;
application live { live on; record off; hls on; hls_path C:/nginx/html/hls/; hls_fragment 5s; } }
}
http { server { listen 8080;
location /hls { types { application/vnd.apple.mpegurl m3u8; video/mp2t ts; } root C:/nginx/html; add_header Cache-Control no-cache; } }