nginx1.6.2编译安装
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx1.6.2编译安装相关的知识,希望对你有一定的参考价值。
1、安装依赖包
yum install gcc openssl* pcre* zlib* libgd gd gd-devel
2、创建nginx用户
groupadd nginx
useradd -g nginx -d /usr/local/nginx
3、下载fair模块(http://wiki.nginx.org/HttpUpstreamFairModule)
wget gnosek-nginx-upstream-fair-a18b409.tar
4、编译
./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_spdy_module --with-http_stub_status_module --with-pcre --with-http_gunzip_module --with-http_gzip_static_module --with-openssl --pid-path=/usr/local/nginx/pid --add-module=/usr/local/nginx/gnosek-nginx-upstream-fair-a18b409/ --with-cc-opt=‘-O3‘ --with-file-aio --with-http_realip_module --with-http_image_filter_module --with-http_secure_link_module --without-poll_module --with-google_perftools_module
5、安装
make && make install
本文出自 “我的运维时光” 博客,请务必保留此出处http://aaronsa.blog.51cto.com/5157083/1741506
以上是关于nginx1.6.2编译安装的主要内容,如果未能解决你的问题,请参考以下文章