标签:nginx
系统环境:
CentOS release 6.6 (Final)
wget http://nginx.org/download/nginx-1.6.3.tar.gz -P /var/lxh/soft/
yum -y install pcre-devel openssl-devel
useradd -M -s /sbin/nologin nginx
# cd /var/lxh/soft/
# tar -xf nginx-1.6.3.tar.gz
# cd nginx-1.6.3
# ./configure --user=nginx --group=nginx \
--prefix=/app/nginx-1.6.3 \
--with-http_ssl_module \
--with-http_stub_status_module
# make && make install
作软链
ln -s /app/nginx-1.6.3/ /app/nginx
查看nginx版本信息
# /app/nginx/sbin/nginx -v
nginx version: nginx/1.6.3
至此,安装工作基本完成
标签:nginx
原文地址:http://xoyabc.blog.51cto.com/7401264/1701726