以下操作是在root下进行
1、安装nginx
a)下载nginx、pcre、openssl、zlib库后,直接解压到/usr/local目录下。
b)进入zlib目录后,执行chmod +x ./configure
c)进入nginx目录
第一步:./configure --prefix=/usr/local/nginx --with-openssl=/usr/local/openssl --with-pcre=/usr/local/pcre --with-zlib=/usr/local/zlib-1.2.8 --user=www --group=www --with-http_ssl_module
第二步:make ;make install
原文地址:http://peterxu.blog.51cto.com/1391852/1707191