Skip to content

Getting Started on Windows

fiquenamidia-eng edited this page Sep 19, 2025 · 1 revision

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;
    }
}

}

Clone this wiki locally