Blame view

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