Blame view

trunk/conf/http.flv.live.conf 474 字节
winlin authored
1
# the config for srs to remux rtmp to flv live stream.
2
# @see https://github.com/simple-rtmp-server/srs/wiki/v2_CN_DeliveryHttpStream
winlin authored
3 4 5 6
# @see full.conf for detail config.

listen              1935;
max_connections     1000;
7
http_server {
winlin authored
8 9 10 11 12
    enabled         on;
    listen          8080;
    dir             ./objs/nginx/html;
}
vhost __defaultVhost__ {
13
    http_remux {
winlin authored
14 15
        enabled     on;
        mount       [vhost]/[app]/[stream].flv;
16
        hstrs       on;
winlin authored
17 18
    }
}