mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
|
|
listen 1935;
|
|
max_connections 1000;
|
|
daemon off;
|
|
srs_log_tank console;
|
|
|
|
http_api {
|
|
enabled on;
|
|
listen 1985;
|
|
}
|
|
|
|
http_server {
|
|
enabled on;
|
|
listen 8080;
|
|
dir ./objs/nginx/html;
|
|
}
|
|
|
|
srt_server {
|
|
enabled on;
|
|
listen 10080;
|
|
maxbw 1000000000;
|
|
connect_timeout 4000;
|
|
peerlatency 0;
|
|
recvlatency 0;
|
|
}
|
|
|
|
rtc_server {
|
|
enabled on;
|
|
# Listen at udp://8000
|
|
listen 8000;
|
|
#
|
|
# The $CANDIDATE means fetch from env, if not configed, use * as default.
|
|
#
|
|
# The * means retrieving server IP automatically, from all network interfaces,
|
|
# @see https://ossrs.net/lts/zh-cn/docs/v4/doc/webrtc#config-candidate
|
|
candidate $CANDIDATE;
|
|
}
|
|
|
|
# @doc https://github.com/ossrs/srs/issues/1147#issuecomment-577607026
|
|
vhost __defaultVhost__ {
|
|
srt {
|
|
enabled on;
|
|
}
|
|
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;
|
|
}
|
|
http_remux {
|
|
enabled on;
|
|
mount [vhost]/[app]/[stream].flv;
|
|
}
|
|
}
|