Merge pull request #150 from karlisk/dev

Updated README.md
This commit is contained in:
Sergey 2016-06-13 12:53:55 +03:00 committed by GitHub
commit aee81e3c8f

View file

@ -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;
}
}
}