1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-13 11:51:57 +00:00
srs/trunk/conf/console.conf

38 lines
887 B
Text
Raw Normal View History

2014-03-23 10:03:24 +00:00
# no-daemon and write log to console config for srs.
2014-03-23 06:47:09 +00:00
# @see full.conf for detail config.
listen 1935;
max_connections 1000;
2014-03-23 06:47:09 +00:00
daemon off;
srs_log_tank console;
2014-03-31 03:35:00 +00:00
http_api {
enabled on;
listen 1985;
}
http_server {
2014-03-31 03:35:00 +00:00
enabled on;
listen 8080;
}
rtc_server {
enabled on;
listen 8000; # UDP port
# @see https://ossrs.net/lts/zh-cn/docs/v4/doc/webrtc#config-candidate
candidate $CANDIDATE;
}
2014-03-23 06:47:09 +00:00
vhost __defaultVhost__ {
hls {
enabled on;
}
http_remux {
enabled on;
mount [vhost]/[app]/[stream].flv;
}
rtc {
enabled on;
# @see https://ossrs.net/lts/zh-cn/docs/v4/doc/webrtc#rtmp-to-rtc
rtmp_to_rtc on;
# @see https://ossrs.net/lts/zh-cn/docs/v4/doc/webrtc#rtc-to-rtmp
rtc_to_rtmp on;
}
2014-03-23 06:47:09 +00:00
}