Blame view

trunk/conf/demo.19350.conf 532 字节
winlin authored
1 2 3 4
# the config for srs demo
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/SampleDemo
# @see full.conf for detail config.
winlin authored
5
listen              19350;
6 7
daemon              on;
srs_log_tank        file;
winlin authored
8
srs_log_file        ./objs/srs.demo.19350.log;
9 10
pid                 ./objs/srs.demo.19350.pid;
winlin authored
11 12 13
vhost __defaultVhost__ {
    enabled         on;
    gop_cache       on;
14 15 16 17 18 19
    hls {
        enabled         on;
        hls_path        ./objs/nginx/html/forward;
        hls_fragment    5;
        hls_window      30;
    }
winlin authored
20 21
}