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

Nginx搭建&配置

时间:2015-01-31 17:36:42      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

1. 安装pcre库
cd /usr/local
tar -zxvf pcre-8.35.tar.gz
cd pcre-8.35.tar.gz
./configure
make
make install
 
pcre下载路径
 
安装pcre 出现错误
configure: error: You need a C++ compiler for C++ support.
apt-get install g++
 
2. 安装zlib库
cd /usr/local
tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure
make
make install
 
3. 安装ssl
cd /usr/local
tar -zxvf openssl-1.0.1l.tar.gz
cd openssl-1.0.1l
./config
make
make install
 
4. 安装nginx
cd /usr/local
tar -zxvf nginx-1.7.8.tar.gz
cd nginx-1.7.8
./confiure —prefix=/usr/local/nginx
make
make install
 
启动
/usr/local/nginx/sbin/nginx
检查启动
netstat -ano | grep 80
打开浏览器,输入本机IP访问
 
重启
/usr/local/nginx/sbin/ngnix -s reload
 
修改配置文件
cd /usr/local/nginx/conf
vi nginx.conf

Nginx搭建&配置

标签:

原文地址:http://www.cnblogs.com/wangjibo/p/4264249.html

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