2015-05-05 03:44:20 +00:00
|
|
|
# push HTTP FLV to SRS.
|
2022-07-31 08:26:35 +00:00
|
|
|
# @see https://ossrs.net/lts/zh-cn/docs/v4/doc/streamer#push-http-flv-to-srs
|
2015-05-05 03:44:20 +00:00
|
|
|
# @see full.conf for detail config.
|
|
|
|
|
|
|
|
listen 1935;
|
|
|
|
max_connections 1000;
|
2017-02-09 06:17:36 +00:00
|
|
|
daemon off;
|
|
|
|
srs_log_tank console;
|
2015-05-07 03:07:32 +00:00
|
|
|
http_server {
|
|
|
|
enabled on;
|
|
|
|
listen 8080;
|
|
|
|
dir ./objs/nginx/html;
|
|
|
|
}
|
2015-05-05 03:44:20 +00:00
|
|
|
stream_caster {
|
|
|
|
enabled on;
|
|
|
|
caster flv;
|
|
|
|
output rtmp://127.0.0.1/[app]/[stream];
|
|
|
|
listen 8936;
|
|
|
|
}
|
|
|
|
vhost __defaultVhost__ {
|
2015-05-07 03:07:32 +00:00
|
|
|
hls {
|
|
|
|
enabled on;
|
|
|
|
hls_fragment 10;
|
|
|
|
hls_window 60;
|
|
|
|
hls_path ./objs/nginx/html;
|
|
|
|
hls_m3u8_file [app]/[stream].m3u8;
|
|
|
|
hls_ts_file [app]/[stream]-[seq].ts;
|
|
|
|
}
|
2015-05-05 03:44:20 +00:00
|
|
|
}
|