mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 11:51:57 +00:00
* if there isn't srt connect, it needn't epoll wait * solve repush srt bugs * change two thread to one thread * mpegts discard header is not 0x47 * add srt_epoll_clear_usocks * add srt parameter configure
37 lines
628 B
Text
37 lines
628 B
Text
# SRT config.
|
|
|
|
listen 1935;
|
|
max_connections 1000;
|
|
srs_log_tank console;
|
|
daemon off;
|
|
|
|
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 300;
|
|
recvlatency 300;
|
|
}
|
|
|
|
# @doc https://github.com/ossrs/srs/issues/1147#issuecomment-577607026
|
|
vhost __defaultVhost__ {
|
|
}
|
|
vhost srs.srt.com.cn {
|
|
}
|
|
|
|
stats {
|
|
network 0;
|
|
disk sda sdb xvda xvdb;
|
|
}
|