Skip to content

Instantly share code, notes, and snippets.

@alksily
Created November 10, 2019 11:50
Show Gist options
  • Save alksily/5f7d4963fc6c9275fce9d4c99998b066 to your computer and use it in GitHub Desktop.
Save alksily/5f7d4963fc6c9275fce9d4c99998b066 to your computer and use it in GitHub Desktop.
How install push stream module for nginx on debian, ubuntu

Install NGINX with nginx-push-stream-module

Gist for Ubuntu and Debian users

Easy

nginx 1.16.1 + push stream module latest

apt-get update -y \
&& apt-get install --no-install-recommends -y \
    wget \
    git \
    unzip \
&& echo "deb-src http://nginx.org/packages/`lsb_release -is | tr '[:upper:]' '[:lower:]'` `lsb_release -cs` nginx" | tee /etc/apt/sources.list.d/nginx.list \
&& wget http://nginx.org/keys/nginx_signing.key && apt-key add nginx_signing.key && rm nginx_signing.key \
&& cd /tmp \
&& apt-get update \
&& apt-get source nginx \
&& apt-get build-dep nginx --no-install-recommends -y \
&& git clone https://github.com/wandenberg/nginx-push-stream-module.git nginx-push-stream-module \
&& cd nginx-1* \
&& sed -i "s@--with-stream_ssl_module@--with-stream_ssl_module --add-module=/tmp/nginx-push-stream-module @g" debian/rules \
&& dpkg-buildpackage -uc -us -b \
&& cd .. \
&& dpkg -i nginx_1*~_amd64.deb \
&& nginx -V \
&& apt-mark hold nginx \
&& rm -rf /tmp/nginx*

After install check

+ nginx -V
nginx version: nginx/1.16.1
built by gcc 8.3.0 (Debian 8.3.0-6)
built with OpenSSL 1.1.1d 10 Sep 2019
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --add-module=/tmp/nginx-push-stream-module --with-stream_ssl_preread_module --with-cc-opt='-g -O2 -fdebug-prefix-map=/tmp/nginx-1.16.1=. -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -Wl,--as-needed -pie'
+ apt-mark hold nginx
nginx set on hold.
@jlecordier
Copy link

Why in the world, in 2024, can't I just do apt install nginx-push-stream for fuck's sake

@swapnil9pawar
Copy link

same here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment