我们将nginx-1.8.1.tar.gz上传至虚拟机/data/ide目录下。
groupadd nginx
useradd -g nginx nginx -s /sbin/nologin
mkdir /data/server/nginx
cd /data/ide
tar zxvf nginx-1.8.1.tar.gz
cd nginx-1.8.1
./configure --prefix=/data/server/nginx \
--user=nginx \
--group=nginx \
--with-pcre=/data/ide/pcre-8.40 \
--with-http_dav_module \
--with-http_flv_module \
--with-http_stub_status_module \
--with-http_ssl_module \
--with-http_realip_module \
--with-http_gzip_static_module \
--without-http-cache
make && make install
chown -R nginx:nginx /data/server/nginx
// 设置开机启动
vi /etc/rc.d/rc.local
/data/server/nginx/sbin/nginx
这里需要我们注意的就是 --with-pcre=/data/ide/pcre-8.40 ,使用pcre源码进行编译,主要用于URL重写!
点击下载用到的源码包: http://download.csdn.net/download/konkon2012/10126484