mirror of
https://github.com/ossrs/srs.git
synced 2025-11-23 19:34:05 +08:00
This PR reorganizes SRS configuration structure by moving RTMP-specific
configurations from global scope to a dedicated `rtmp {}` section, and
includes various cleanups.
**Before (SRS 6.x):**
```nginx
listen 1935;
chunk_size 60000;
max_connections 1000;
```
**After (SRS 7.0+):**
```nginx
max_connections 1000;
rtmp {
listen 1935;
chunk_size 60000;
}
```
Cleanup:
* Removed unused threads_interval configuration and related code
* Cleaned up reload handlers and removed obsolete functionality
---------
Co-authored-by: OSSRS-AI <winlinam@gmail.com>
62 lines
1.3 KiB
Plaintext
62 lines
1.3 KiB
Plaintext
|
|
max_connections 1000;
|
|
pid objs/origin2.pid;
|
|
daemon off;
|
|
srs_log_tank console;
|
|
|
|
# RTMP server configuration
|
|
rtmp {
|
|
listen 19352;
|
|
}
|
|
http_server {
|
|
enabled on;
|
|
listen 8082;
|
|
dir ./objs/nginx/html;
|
|
}
|
|
http_api {
|
|
enabled on;
|
|
listen 19853;
|
|
}
|
|
rtc_server {
|
|
enabled on;
|
|
listen 8002; # UDP port
|
|
# @see https://ossrs.io/lts/en-us/docs/v7/doc/webrtc#config-candidate
|
|
candidate $CANDIDATE;
|
|
}
|
|
srt_server {
|
|
enabled on;
|
|
listen 10082;
|
|
tsbpdmode off;
|
|
tlpktdrop off;
|
|
}
|
|
heartbeat {
|
|
enabled on;
|
|
interval 9;
|
|
url http://127.0.0.1:12025/api/v1/srs/register;
|
|
device_id origin2;
|
|
ports on;
|
|
}
|
|
vhost __defaultVhost__ {
|
|
http_remux {
|
|
enabled on;
|
|
mount [vhost]/[app]/[stream].flv;
|
|
}
|
|
hls {
|
|
enabled on;
|
|
hls_path ./objs/nginx/html;
|
|
hls_fragment 10;
|
|
hls_window 60;
|
|
}
|
|
rtc {
|
|
enabled on;
|
|
# @see https://ossrs.io/lts/en-us/docs/v7/doc/webrtc#rtmp-to-rtc
|
|
rtmp_to_rtc on;
|
|
# @see https://ossrs.io/lts/en-us/docs/v7/doc/webrtc#rtc-to-rtmp
|
|
rtc_to_rtmp on;
|
|
}
|
|
srt {
|
|
enabled on;
|
|
srt_to_rtmp on;
|
|
}
|
|
}
|