Getting Started on Windows - arut/nginx-rtmp-module GitHub Wiki
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;
}
}
}