1

apache 或 nginx(最好)中是否有允许将传入流同时复制到多个上游的指令?

我需要这个的原因:我想将实时视频内容从一个客户端流式传输到多个 Flash RMTP 服务器,这些服务器将使该内容可供多个客户端使用。
此设置在一台流媒体服务器上运行,但我想添加更多。

任何帮助是极大的赞赏。

4

1 回答 1

1

我假设您正在使用类似于以下内容的内容:

proxy_pass

 location / {
   proxy_pass        http://192.168.1.11:8000;
   proxy_set_header  X-Real-IP  $remote_addr;
 }

--

改用这个:http://wiki.nginx.org/NginxHttpUpstreamModule

 upstream backend  {
   server backend1.example.com weight=5;
   server backend2.example.com:8080;
   server unix:/tmp/backend3;
 }

 server {
   location / {
     proxy_pass  http://backend;
   }
 }
于 2009-11-28T18:07:51.943 回答