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>
22 lines
571 B
Plaintext
22 lines
571 B
Plaintext
# the config for srs to dvr in custom path.
|
|
# @see https://ossrs.io/lts/en-us/docs/v7/doc/dvr#custom-path
|
|
# @see full.conf for detail config.
|
|
|
|
max_connections 1000;
|
|
daemon off;
|
|
srs_log_tank console;
|
|
|
|
# RTMP server configuration
|
|
rtmp {
|
|
listen 1935;
|
|
}
|
|
vhost __defaultVhost__ {
|
|
dvr {
|
|
enabled on;
|
|
dvr_path ./objs/nginx/html/[app]/[stream]/[2006]/[01]/[02]/[15].[04].[05].[999].flv;
|
|
dvr_plan segment;
|
|
dvr_duration 30;
|
|
dvr_wait_keyframe on;
|
|
}
|
|
}
|