mirror of
https://github.com/arut/nginx-rtmp-module.git
synced 2026-03-13 09:30:16 +08:00
1
Getting Started on Windows
fiquenamidia-eng edited this page 2025-09-19 11:38:38 -03:00
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;
}
}
}