Update for SRSX with proxy server.

This commit is contained in:
winlin 2025-12-13 08:24:40 -05:00
parent d3fce1c106
commit 93c5d7225b
3 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ architecture:
origin_cluster: origin_cluster:
v6_mesh: "DEPRECATED - C++ MESH mode, RTMP only" v6_mesh: "DEPRECATED - C++ MESH mode, RTMP only"
v7_proxy: "RECOMMENDED - Go-based proxy (https://github.com/ossrs/srsx/tree/main/proxy-go), all protocols, better scaling" v7_proxy: "RECOMMENDED - Go-based proxy (https://github.com/ossrs/srsx/tree/main/cmd/proxy-go), all protocols, better scaling"
codebase_structure: codebase_structure:
dirs: "trunk/src/{main,core,kernel,protocol,app}" dirs: "trunk/src/{main,core,kernel,protocol,app}"

View File

@ -2,5 +2,5 @@
Migrated to below repositoties: Migrated to below repositoties:
* [srsx/proxy-go](https://github.com/ossrs/srsx/tree/main/proxy-go) An common proxy server for any media servers with RTMP/SRT/HLS/HTTP-FLV and WebRTC/WHIP/WHEP protocols support. * [srsx/cmd/proxy-go](https://github.com/ossrs/srsx/tree/main/cmd/proxy-go) An common proxy server for any media servers with RTMP/SRT/HLS/HTTP-FLV and WebRTC/WHIP/WHEP protocols support.

View File

@ -50,7 +50,7 @@ server by below command, and get the executable binary `./srs-proxy`:
```bash ```bash
git clone https://github.com/ossrs/srsx.git git clone https://github.com/ossrs/srsx.git
cd srsx/proxy-go && make cd srsx && make
``` ```
> Note: You can also download the dependencies by running `go mod download` before building. > Note: You can also download the dependencies by running `go mod download` before building.