美文网首页
NGINX的安装

NGINX的安装

作者: hel2o | 来源:发表于2016-08-10 08:49 被阅读0次
    wget wget http://www.openssl.org/source/openssl-1.0.0a.tar.gz
    tar zxvf openssl-1.0.0a.tar.gz
    cd openssl-1.0.0a
    ./Configure
    make && make install
    wget http://zlib.net/zlib-1.2.8.tar.gz
    tar zxvf zlib-1.2.8.tar.gz
    cd zlib-1.2.8
    ./configure
    make && make install
    wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.34.tar.gz
    tar -zxvf pcre-8.34.tar.gz
    cd pcre-8.34
    ./configure
    make && make install
    wget http://nginx.org/download/nginx-1.6.2.tar.gz
    tar zxvf nginx-1.6.2.tar.gz
    cd nginx-1.6.2
    ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre=/home/software/pcre-8.34 --with-zlib=/home/software/zlib-1.2.8 --with-openssl=/home/software/openssl-1.0.0a --with-http_random_index_module --http-proxy-temp-path=/usr/local/nginx/temp/proxy_temp --http-client-body-temp-path=/usr/local/nginx/temp/client_body_temp --http-fastcgi-temp-path=/usr/local/nginx/temp/fastcgi_temp --http-uwsgi-temp-path=/usr/local/nginx/temp/uwsgi_temp --http-scgi-temp-path=/usr/local/nginx/temp/scgi_temp
    make && make install
    cd /usr/local/nginx
     mkdir  temp
    

    相关文章

      网友评论

          本文标题:NGINX的安装

          本文链接:https://www.haomeiwen.com/subject/daodsttx.html