Skip to content

Instantly share code, notes, and snippets.

@shavit
Created August 20, 2015 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shavit/ec486e05a640a1d7129e to your computer and use it in GitHub Desktop.
Save shavit/ec486e05a640a1d7129e to your computer and use it in GitHub Desktop.
Compile Nginx with ramp module
./configure \
--user=nginx \
--group=nginx \
--prefix=/usr/share/nginx/nginx-1.7.12 \
--add-module=../nginx-rtmp-module-master \
--sbin-path=/usr/local/sbin/nginx \
--conf-path=/usr/share/nginx/nginx-1.7.12/conf/nginx.conf \
--pid-path=/var/run/nginx.pid \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/varlog/nginx/access.log
make;
make install;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment