Updated README.md

Updated info about Multi-worker support, may require better detailed
explanation than provided.
This commit is contained in:
Kārlis K 2016-06-12 19:00:04 +03:00
parent 51396cdebb
commit 45a02da89e

View file

@ -118,10 +118,8 @@ name - interpreted by each application
### Multi-worker live streaming ### Multi-worker live streaming
Module supports multi-worker live This NGINX-RTMP module does not support multi-worker live
streaming through automatic stream pushing 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.
to nginx workers. This option is toggled with
rtmp_auto_push directive.
### Example nginx.conf ### 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;
}
}
}