Как правильно установить модуль push stream для nginx
Во-первых, я установил nginx -v 1.10.3
Я пробовал эту инструкцию по установке https://github.com/wandenberg/nginx-push-stream-module
1) git clone https://github.com/wandenberg/nginx-push-stream-module.git and NGINX_PUSH_STREAM_MODULE_PATH=$PWD/nginx-push-stream-module
- ХОРОШО
2) wget http://nginx.org/download/**nginx-1.10.3.tar.gz** and tar xzvf nginx-1.2.0.tar.gz
- ХОРОШО
3)./configure --add-module=../nginx-push-stream-module and make && make install
-ХОРОШО
4) sudo /usr/local/nginx/sbin/nginx -c $NGINX_PUSH_STREAM_MODULE_PATH/misc/nginx.conf -t
- ХОРОШО
nginx: the configuration file /home/user/nginx-push-stream-module/misc/nginx.conf syntax is ok
nginx: configuration file /home/user/nginx-push-stream-module/misc/nginx.conf test is successful
Так что все было хорошо, но nginx -V
return nginx version: nginx/1.10.3 (Ubuntu)
built with OpenSSL 1.0.2g 1 Mar 2016
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_v2_module --with-http_sub_module --with-http_xslt_module --with-stream --with-stream_ssl_module --with-mail --with-mail_ssl_module --with-threads
а где нет nginx-push-stream-module
,
# sudo /usr/local/nginx/sbin/nginx -v
nginx version: nginx/1.10.3
# whereis nginx
nginx: /usr/sbin/nginx /etc/nginx /usr/local/nginx /usr/share/nginx
Что я делаю не так? Как я могу это исправить и правильно установить модуль? Помогите пожалуйста!