2021-05-01 14:15:57 +00:00
|
|
|
|
|
|
|
listen 1935;
|
|
|
|
max_connections 1000;
|
|
|
|
daemon off;
|
|
|
|
srs_log_tank console;
|
|
|
|
|
|
|
|
http_server {
|
|
|
|
enabled on;
|
|
|
|
listen 8080;
|
|
|
|
dir ./objs/nginx/html;
|
|
|
|
}
|
|
|
|
|
|
|
|
http_api {
|
|
|
|
enabled on;
|
|
|
|
listen 1985;
|
|
|
|
}
|
|
|
|
stats {
|
|
|
|
network 0;
|
|
|
|
}
|
|
|
|
rtc_server {
|
|
|
|
enabled on;
|
2021-12-13 01:24:16 +00:00
|
|
|
listen 8000; # UDP port
|
2021-10-12 00:36:24 +00:00
|
|
|
# @see https://github.com/ossrs/srs/wiki/v4_CN_WebRTC#config-candidate
|
2021-05-01 14:15:57 +00:00
|
|
|
candidate $CANDIDATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
vhost __defaultVhost__ {
|
|
|
|
rtc {
|
|
|
|
enabled on;
|
2021-10-12 00:36:24 +00:00
|
|
|
# @see https://github.com/ossrs/srs/wiki/v4_CN_WebRTC#rtmp-to-rtc
|
|
|
|
rtmp_to_rtc on;
|
|
|
|
# @see https://github.com/ossrs/srs/wiki/v4_CN_WebRTC#rtc-to-rtmp
|
2021-05-01 14:15:57 +00:00
|
|
|
rtc_to_rtmp on;
|
|
|
|
}
|
|
|
|
http_remux {
|
|
|
|
enabled on;
|
|
|
|
mount [vhost]/[app]/[stream].flv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|