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
|
5fec59ace2
|
merge from srs2, fix #503
|
2017-02-09 14:33:56 +08:00 |
|
winlin
|
15570d93ce
|
change conf to console without daemon.
|
2017-02-09 14:17:36 +08:00 |
|
winlin
|
7ae76b579e
|
refine the conf, use srs3 style
|
2015-09-11 08:21:06 +08:00 |
|
winlin
|
25807298ad
|
alias http_stream to http_server. rename http to http_static of vhost. rename http_flv to http_renux
|
2015-01-22 09:34:33 +08:00 |
|
winlin
|
2742c0d3c2
|
for #277, support http vhost mount.
|
2015-01-18 16:38:26 +08:00 |
|
winlin
|
4513486266
|
refine http server, support mount dir for vhost.
|
2015-01-18 13:34:26 +08:00 |
|