日期:2012-01-30 15:41:00 来源:本站整理
CentOS6+Nginx+Pcre+OpenSSL+zlib[服务器安全]
本文“CentOS6+Nginx+Pcre+OpenSSL+zlib[服务器安全]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:
1、 PCRE库的安装:
官网:http://www.pcre.org/
下载页面:
tar –zxvf pcre-8.20.tar.gz
cd pcre-8.20
./configure
make
make install
2、 OpenSSL库的安装
官网:http://www.openssl.org
下载页面:http://www.openssl.org/source/
tar –zxvf openssl-1.0.0g.tar.gz
cd openssl-1.0.0g
./configure
make
make install
3、安装zlib库安装
tar -zxvf zlib-1.2.5.tar.gz
cd zlib-1.2.5
./configure
make
make install
4、nginx安装
官网:http://nginx.org
下载页面:http://nginx.org/en/download.html
tar –zxvf nginx-1.1.13.tar.gz
cd nginx-1.1.13
./configure --prefix=/usr/local/nginx --with-http_realip_module --with-http_sub_module --with-http_flv_module --with-http_dav_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_addition_module --with-pcre=/usr/local/pcre-8.20 --with-openssl=/usr/local/openssl-1.0.0g --with-http_ssl_module --with-zlib=/usr/local/zlib-1.2.5
(以上 --with-开通功效 不清楚的可以到官网查询http://wiki.nginx.org/Modules )
make
make install
nginx的启动:
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
以上是“CentOS6+Nginx+Pcre+OpenSSL+zlib[服务器安全]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
本文地址: | 与您的QQ/BBS好友分享! |
评论内容只代表网友观点,与本站立场无关!
评论摘要(共 0 条,得分 0 分,平均 0 分)
查看完整评论