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>
30 lines
785 B
Plaintext
30 lines
785 B
Plaintext
# the config for srs http heartbeat, report its info to api-server
|
|
# @see full.conf for detail config.
|
|
|
|
max_connections 1000;
|
|
daemon off;
|
|
srs_log_tank console;
|
|
|
|
# RTMP server configuration
|
|
rtmp {
|
|
listen 1935;
|
|
}
|
|
heartbeat {
|
|
enabled on;
|
|
interval 9.3;
|
|
# for python api-server
|
|
url http://127.0.0.1:8085/api/v1/servers;
|
|
device_id "my-srs-device";
|
|
# for ossrs.net monitor, device_id is the key genereated by bsm.
|
|
#url http://www.ossrs.net:1977/api/v1/robots/servers;
|
|
#device_id "35c9b402c12a7246868752e2878f7e0e";
|
|
# with detail summaries
|
|
summaries on;
|
|
}
|
|
stats {
|
|
network 0;
|
|
disk sda sdb xvda xvdb;
|
|
}
|
|
vhost __defaultVhost__ {
|
|
}
|