nginx 및 nginx - rtmp - module 설치

1136 단어 nginxRTMP
시스템 설명:
centos6.2_64
판본
nginx-1.4.4
nginx-rtmp-module-1.0.6
https://github.com/shenhailuanma/nginx-rtmp-module.git
설치
./configure --add-module=/root/nginx-rtmp-module-1.0.6
매우 정상 적 인 문제 가 발생 했다.
./configure: error: the HTTP rewrite module requires the PCRE library.
pcre - devel 과 openssl - devel 을 설치 하여 문 제 를 해결 합 니 다.
centos 아래:  yum -y install pcre-devel openssl openssl-devel
ubuntu 아래:
sudo apt-get update  sudo apt-get install libpcre3 libpcre3-dev  sudo apt - get install openssl libssl - dev 를 설치 해 야 할 수도 있 습 니 다.
그리고 make, make install 설치 가 완료 되 었 습 니 다.
3. 프로필
#uer  nobody;
worker_processes  1;
error_log  logs/error.log debug;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#pid        logs/nginx.pid;
events {
    worker_connections  1024;
}
rtmp {
    server {
        listen 1935;
        chunk_size 4096;
        application myapp {
            live on;
        }
    }
}

운행
/usr/local/nginx/sbin/nginx -c /root/rtmp.conf
OK, nginx - rtmp - module 을 이용 하여 rtmp 미디어 서버 를 간단하게 실현 했다.

좋은 웹페이지 즐겨찾기