nginx安装

nginx 安装版本 为1.8.0

gzip模块需要 zlib

rewrite模块需要 pcre

ssl 功能需要openssl

 

下载相关依赖

zlib(version1.1.3 — 1.2.7)

http://zlib.net/zlib-1.2.7.tar.gz

pcre(version 4.4 — 8.32)

http://www.pcre.org/

openssl 1.0.2

http://www.openssl.org/source/

 

安装nginx获取nginx,在http://nginx.org/en/download.html上可以获取当前最新的版本。

   解压缩 tar xvf nginx-1.8.0.tar.gz

进入解压缩目录,执行

./configure
    --prefix=/home/nginx/nginx-1.8.0-bin
    --http-client-body-temp-path=/home/nginx/nginx-1.8.0-bin/cache/client_temp
    --http-proxy-temp-path=/home/nginx/nginx-1.8.0-bin/cache/proxy_temp
    --http-fastcgi-temp-path=/home/nginx/nginx-1.8.0-bin/cache/fastcgi_temp
    --http-uwsgi-temp-path=/home/nginx/nginx-1.8.0-bin/cache/uwsgi_temp
    --http-scgi-temp-path=/home/nginx/nginx-1.8.0-bin/cache/scgi_temp
    --user=nginx
    --group=nginx
    --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_mp4_module
    --with-http_gunzip_module
    --with-http_gzip_static_module
    --with-http_random_index_module
    --with-http_secure_link_module
    --with-http_stub_status_module
    --with-http_auth_request_module
    --with-mail
    --with-mail_ssl_module
    --with-file-aio
    --with-http_spdy_module
    --with-ipv6
    --with-pcre=../pcre-8.32
    --with-zlib=../zlib-1.2.7
    --with-openssl=/home/nginx/openssl-1.0.2e
     make

    make install

 安装完成

 

你可能感兴趣的:(运维)