Skip to content

Commit

Permalink
For #2303: Add conf for RTC2RTMP
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed May 1, 2021
1 parent 8a30cc8 commit f7473c9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 47 deletions.
42 changes: 42 additions & 0 deletions trunk/conf/rtc2rtmp.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@

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;
# 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://github.com/ossrs/srs/wiki/v4_CN_RTCWiki#config-candidate
candidate $CANDIDATE;
}

vhost __defaultVhost__ {
rtc {
enabled on;
rtc_to_rtmp on;
}
http_remux {
enabled on;
mount [vhost]/[app]/[stream].flv;
}
}

47 changes: 0 additions & 47 deletions trunk/conf/rtc_live.conf

This file was deleted.

0 comments on commit f7473c9

Please sign in to comment.