1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

update readme and wiki url for http ts stream

This commit is contained in:
winlin 2015-01-22 18:39:53 +08:00
parent 0702ad19b6
commit a647043a06
6 changed files with 34 additions and 14 deletions

View file

@ -0,0 +1,17 @@
# the config for srs to remux rtmp to ts live stream.
# @see https://github.com/winlinvip/simple-rtmp-server/wiki/v2_CN_DeliveryHttpStream
# @see full.conf for detail config.
listen 1935;
max_connections 1000;
http_server {
enabled on;
listen 8080;
dir ./objs/nginx/html;
}
vhost __defaultVhost__ {
http_remux {
enabled on;
mount [vhost]/[app]/[stream].ts;
}
}