gnolizuh / BLSS

NGINX-based Live Media Streaming Server
Other
196 stars 73 forks source link

virtual host feature supported #56

Closed gnolizuh closed 7 years ago

gnolizuh commented 7 years ago
service cctv {

    # supported wildcards: "*.example.com", ".example.com", and "www.example.*"
    hostname pub rtmp *.pub.rtmp.cctv;
    hostname sub rtmp *.sub.rtmp.cctv;
    hostname sub http_flv *.sub.httpflv.cctv;

    application news {

        live on;
        http_flv on;
        gop_cache on;

        hls on;
        hls_fragment 10s;
        hls_playlist_length 30s;
    }

    application sports {

        hls on;
        hls_fragment 1m;
        hls_playlist_length 3m;
    }
}