Это старая версия документа.


IPCAM

Трансляция камер видеонаблюдения для сайта

Установка nginx

apt-get install build-essential
apt-get install libpcre3 libpcre3-dev
cd /usr/src/
wget http://nginx.org/download/nginx-1.9.0.tar.gz
tar -xzvf nginx-1.9.0.tar.gz
cd nginx-1.9.0
./configure --prefix=/usr --conf-path=/etc/nginx/nginx.conf --pid-path=/var/run/nginx.pid --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --with-http_ssl_module --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module
make 
make install