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 |
|
winlin
|
964ef997cb
|
Update docs link to latest in code.
|
2025-07-05 09:32:11 -04:00 |
|
winlin
|
d57e9c758e
|
Docs: Migrate to ossrs.net and ossrs.io
|
2022-07-31 16:26:35 +08:00 |
|
winlin
|
ba0b62fd37
|
For docker, always use the console for logging. v4.0.235
|
2022-01-30 22:01:21 +08:00 |
|
winlin
|
dc43a11aed
|
Enable rtmp2rtc and rtc2rtmp for docker.conf
|
2022-01-17 21:37:57 +08:00 |
|
winlin
|
71ed6e5dc5
|
RTC: Refine config, aac to rtmp_to_rtc, bframe to keep_bframe. v4.0.174
|
2021-10-11 22:14:45 +08:00 |
|
winlin
|
fe9e43b6d4
|
RTC: Refine config for RTC
|
2021-10-11 16:36:05 +08:00 |
|
winlin
|
0f9b9505a8
|
RTC: Change rtc.aac to discard by default. v4.0.172
|
2021-10-10 17:17:14 +08:00 |
|
winlin
|
55d8cb4b7b
|
Default to log to console for docker. v4.0.168
|
2021-10-08 21:58:33 +08:00 |
|
winlin
|
83c615aa8a
|
SquashSRS3: Docker: Add conf/docker.conf, daemon off, log console, enable RTC
|
2021-03-04 22:45:43 +08:00 |
|