2020-11-06 23:11:57 +00:00
|
|
|
|
|
|
|
listen 1935;
|
|
|
|
max_connections 1000;
|
|
|
|
daemon off;
|
|
|
|
srs_log_tank console;
|
|
|
|
|
|
|
|
http_server {
|
|
|
|
enabled on;
|
|
|
|
listen 8080;
|
|
|
|
dir ./objs/nginx/html;
|
|
|
|
https {
|
|
|
|
enabled on;
|
|
|
|
listen 8088;
|
|
|
|
key ./conf/server.key;
|
|
|
|
cert ./conf/server.crt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
http_api {
|
|
|
|
enabled on;
|
|
|
|
listen 1985;
|
|
|
|
https {
|
|
|
|
enabled on;
|
|
|
|
listen 1990;
|
|
|
|
key ./conf/server.key;
|
|
|
|
cert ./conf/server.crt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stats {
|
|
|
|
network 0;
|
|
|
|
}
|
|
|
|
rtc_server {
|
|
|
|
enabled on;
|
2022-01-11 00:40:05 +00:00
|
|
|
listen 8000; # UDP port
|
|
|
|
# @see https://github.com/ossrs/srs/wiki/v4_CN_WebRTC#config-candidate
|
2020-11-06 23:11:57 +00:00
|
|
|
candidate $CANDIDATE;
|
|
|
|
}
|
|
|
|
|
|
|
|
vhost __defaultVhost__ {
|
|
|
|
rtc {
|
|
|
|
enabled on;
|
2022-01-11 00:40:05 +00:00
|
|
|
# @see https://github.com/ossrs/srs/wiki/v4_CN_WebRTC#rtmp-to-rtc
|
|
|
|
rtmp_to_rtc off;
|
|
|
|
# @see https://github.com/ossrs/srs/wiki/v4_CN_WebRTC#rtc-to-rtmp
|
|
|
|
rtc_to_rtmp off;
|
|
|
|
}
|
|
|
|
http_remux {
|
|
|
|
enabled on;
|
|
|
|
mount [vhost]/[app]/[stream].flv;
|
2020-11-06 23:11:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|