ubuntu 搭建nginx服务器

简介

对于Nginx的优点呢就不多说了,两句话:
1)并发量高
2)可负载均衡
重点谈谈rtmp吧!
RTMP全称是Real Time Messaging Protocol(实时消息传输协议),rmtp是一种通讯协议。该协议基于TCP,是一个协议族,包括RTMP基本协议及RTMPT/RTMPS/RTMPE等多种变种。RTMP是一种设计用来进行实时数据通信的网络协议,主要用来在Flash/AIR平台和支持RTMP协议的流媒体/交互服务器之间进行音视频和数据通信。现在更流行于直播平台服务器的推流处理!


****install搭建****
  • 建立源码编译的目录
 mkdir nginx-src
 cd nginx-src
  • 下载源码仓库
#nginx源码
 git clone https://github.com/nginx/nginx.git
#nginx的rtmp模块源码
 git clone https://github.com/arut/nginx-rtmp-module.git
#nginx的依赖pcre源码
 wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
 tar -xzvf pcre-8.39.tar.gz
 cd nginx git checkout release-1.9.9
  • 准备编译安装
#将configure的命令封装成脚本
$ vim cfg.sh
#  cfg.sh文件的内容
auto/configure --prefix=/usr/local/nginx \
        --with-pcre=../pcre-8.39 \
                --with-http_ssl_module \
                --with-http_v2_module \
                --with-http_flv_module \
                --with-http_mp4_module \
                --add-module=../nginx-rtmp-module/
$ chmod a+x cfg.sh
$ ./cfg.sh
$ make 
$ make install

执行./cfg.sh可能会报错./configure: error: SSL modules require the OpenSSL library.

解决方法:
Centos需要安装openssl-devel
Ubuntu则需要安装:sudo apt-get install libssl-dev

  • 启动nginx服务器
/usr/local/nginx/sbin/nginx

重新加载 ./nginx -s reload

nginx配置

配置nginx 配置文件在 /usr/local/nginx/conf/nginx/conf
ubuntu 搭建nginx服务器_第1张图片


server {
    listen    80;
    server_name    192.168.26.134;

    location / {
    	root /home/zsh;
    	autoindex on;
        index    index.html index.htm;
    }
}

你可能感兴趣的:(ubuntu 搭建nginx服务器)