mirror of
https://github.com/ossrs/srs.git
synced 2025-02-12 19:31:53 +00:00
22 lines
549 B
Text
22 lines
549 B
Text
# the config for srs to remux rtmp to flv live stream.
|
|
# @see https://github.com/ossrs/srs/wiki/v2_CN_DeliveryHttpStream
|
|
# @see full.conf for detail config.
|
|
|
|
listen 19352;
|
|
max_connections 1000;
|
|
pid objs/srs.flv.19352.pid;
|
|
http_server {
|
|
enabled on;
|
|
listen 8082;
|
|
dir ./objs/nginx/html;
|
|
}
|
|
vhost __defaultVhost__ {
|
|
cluster {
|
|
mode remote;
|
|
origin 127.0.0.1;
|
|
}
|
|
http_remux {
|
|
enabled on;
|
|
mount [vhost]/[app]/[stream].flv;
|
|
}
|
|
}
|