winlin
|
1d9105396d
|
Update guideline for AI about sanitizer.
|
2025-10-26 16:28:02 -04:00 |
|
OSSRS-AI
|
6590871ca8
|
AI: HLS: Support hls_master_m3u8_path_relative for reverse proxy compatibility. v7.0.104 (#4338)
|
2025-10-25 21:10:21 -04:00 |
|
Haibo Chen(陈海博)
|
abaffdd4b9
|
fix crash issue caused by reload configuration file. v7.0.98 (#4530)
fix crash issue caused by reload configuration file, which occurs when a
vhost is added/removed in the new configuration.
Introduced by https://github.com/ossrs/srs/pull/4458
see https://github.com/ossrs/srs/issues/4529
|
2025-10-16 07:30:16 -04:00 |
|
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
|
3f57ca5966
|
AI: Update SRS docs for Augment.
|
2025-08-19 22:28:10 -06:00 |
|
Winlin
|
40df358e50
|
AI: Add guide for Augment. (#4404)
|
2025-06-27 07:23:45 -04:00 |
|