标签:nginx
#系统说明:CentOS6.7_64位,最小化安装 # !!!最小化安装时系统未安装相关编译工具 !!! # # 安装nginx时必须先安装相应的编译工具 # make编译器:yum -y install make libtool automake autoconf # gcc编译器: yum -y install gcc gcc-c++ autoconf automake #yum -y install gcc gcc-c++ automake autoconf libtool make # # 安装nginx时需安装的软件 # zlib zlib-devel:nginx提供gzip模块,需要zlib库支持 # openssl openssl-devel:nginx提供ssl功能 # pcre:支持地址重写rewrite功能 #yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel # 建立nginx组, -r 选项 groupadd -r nginx useradd -s /sbin/nologin -g nginx -r nginx # id nginx:查看nginx用户信息 # wget安装(最小化安装时系统未安装wget): #yum install -y wget wget http://nginx.org/download/nginx-1.9.14.tar.gz tar -zxf nginx-1.9.14.tar.gz cd nginx-1.9.14 ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_gzip_static_module --with-http_stub_status_module \ --with-http_v2_module # –with-http_stub_status_module:支持nginx状态查询 # –with-http_ssl_module:支持https加密 # –with-pcre:为了支持rewrite重写功能,必须制定pcre make && make install
本文出自 “securetty” 博客,请务必保留此出处http://securetty.blog.51cto.com/11471960/1765741
标签:nginx
原文地址:http://securetty.blog.51cto.com/11471960/1765741