From 45a02da89e484c63f3bff6f67dd7557be0d1de24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C4=81rlis=20K?= Date: Sun, 12 Jun 2016 19:00:04 +0300 Subject: [PATCH] Updated README.md Updated info about Multi-worker support, may require better detailed explanation than provided. --- README.md | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index b3e7137..d53d0e6 100644 --- a/README.md +++ b/README.md @@ -118,10 +118,8 @@ name - interpreted by each application ### Multi-worker live streaming -Module supports multi-worker live -streaming through automatic stream pushing -to nginx workers. This option is toggled with -rtmp_auto_push directive. +This NGINX-RTMP module does not support multi-worker live +streaming. While this feature can be enabled through rtmp_auto_push on|off directive, it is ill advised because it is incompatible with NGINX versions starting 1.7.2 and up, there for it should not be used. ### Example nginx.conf @@ -336,18 +334,3 @@ rtmp_auto_push directive. } } } - - -### Multi-worker streaming example - - rtmp_auto_push on; - - rtmp { - server { - listen 1935; - - application mytv { - live on; - } - } - }