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;
|
2014-07-26 07:34:45 +00:00
|
|
|
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;
|
|
|
|
}
|
2015-01-22 01:34:33 +00:00
|
|
|
http_server {
|
2014-03-31 03:35:00 +00:00
|
|
|
enabled on;
|
|
|
|
listen 8080;
|
|
|
|
}
|
2022-09-28 08:07:26 +00:00
|
|
|
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__ {
|
2022-09-28 08:07:26 +00:00
|
|
|
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
|
|
|
}
|