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

Nginx 1.10编译安装

时间:2017-03-24 16:14:26      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:微软雅黑   color   cccccc   style   

Nginx安装很简单,如下:

# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
# mkdir /software
# cd /software/
# wget http://nginx.org/download/nginx-1.10.3.tar.gz
# tar zxvf  nginx-1.10.3.tar.gz 
# cd nginx-1.10.3


# mkdir /usr/local/nginx
# yum install pcre pcre-devel penssl openssl-devel zlib zlib-devel -y

# useradd -s /sbin/nologin -M nginx
# ./configure --user=nginx --group=nginx --prefix=/usr/local/nginx  --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module --with-http_realip_module  --with-pcre
# make && make install

# /usr/local/nginx/sbin/nginx

Nginx 1.10编译安装

标签:微软雅黑   color   cccccc   style   

原文地址:http://tengq.blog.51cto.com/2004324/1910002

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