Skip to content

Instantly share code, notes, and snippets.

@fernyb
Created October 1, 2012 17:19
Show Gist options
  • Save fernyb/3813134 to your computer and use it in GitHub Desktop.
Save fernyb/3813134 to your computer and use it in GitHub Desktop.
nginx install
wget http://nginx.org/download/nginx-1.2.4.tar.gz
wget https://github.com/arut/nginx-rtmp-module.git
cd nginx-rtmp-module
rtmp_module_path=$(pwd)
cd ..
tar zxvf nginx-1.2.4.tar.gz
cd nginx-1.2.4
./configure --prefix=/usr/local/nginx-1.2.4 --with-http_ssl_module --with-http_stub_status_module --with-http_gzip_static_module \
--add-module=$rtmp_module_path
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment