码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS6.7下nginx编译安装

时间:2016-04-20 15:14:20      阅读:138      评论:0      收藏:0      [点我收藏+]

标签: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

CentOS6.7下nginx编译安装

标签:nginx

原文地址:http://securetty.blog.51cto.com/11471960/1765741

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!