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

编译安装 Nginx

时间:2017-05-25 13:44:45      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:状态   efi   tps   span   tar   for   user   conf   class   

yum install -y pcre pcre-devel openssl openssl-devel gcc gcc-c++ ncurses-devel perl   
useradd nginx -s /sbin/nologin -M
iptables -F
setenforce 0
cd /usr/local/src
wget http://nginx.org/download/nginx-1.6.3.tar.gz
tar xf nginx-1.6.3.tar.gz
cd nginx-1.6.3
./configure --user=nginx --group=nginx --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
make && make install
cd ..
/usr/local/nginx/sbin/nginx  

说明:

(1) pcre :使 Nginx 支持 rewrite(重定向)
(2) openssl :使 Nginx 支持 https
(3) --user :指定运行 Nginx 进程的用户
(4) --group :指定运行 Nginx 进程的用户组
(5) --prefix :指定 Nginx 的安装目录
(6) --with-http_stub_status_module :激活状态信息
(7) --with-http_ssl_module :激活 SSL 功能

 

 

 

    

 

 

编译安装 Nginx

标签:状态   efi   tps   span   tar   for   user   conf   class   

原文地址:http://www.cnblogs.com/pzk7788/p/6902978.html

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