Winlin
|
1c4ecefcb6
|
AI: Config: Move RTMP configs to rtmp{} section. v7.0.64 (#4454)
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>
|
2025-08-27 19:27:23 -04:00 |
|
Jacob Su
|
baf22d01c1
|
Refine config directive token parsing. v6.0.135 (#4042)
make sure one directive token don't span more than two lines.
try to fix #2228
---------
Co-authored-by: winlin <winlinvip@gmail.com>
|
2024-07-08 18:19:25 +08:00 |
|
winlin
|
15570d93ce
|
change conf to console without daemon.
|
2017-02-09 14:17:36 +08:00 |
|
winlin
|
33bc8755ab
|
refine code, add comments for ossrs.net monitor.
|
2014-08-04 10:50:28 +08:00 |
|
winlin
|
37ceadd865
|
sync the conf file
|
2014-07-27 19:11:51 +08:00 |
|
winlin
|
f4ea48adcb
|
rename network_device_index to network
|
2014-07-27 18:39:20 +08:00 |
|
winlin
|
e76036f40b
|
refine config heartbeat, add new stats. 0.9.175
|
2014-07-27 14:43:55 +08:00 |
|
winlin
|
ebf9e560b1
|
refine the max connections, compare the system ulimit max open files, error when exeed limit
|
2014-07-26 15:34:45 +08:00 |
|
winlin
|
6bc0ecece7
|
add dvr, http heartbeat conf sample
|
2014-05-22 17:13:57 +08:00 |
|