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

Centos7.0安装Nginx1.8.1

时间:2017-11-15 10:52:11      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:zabbix_nginx

Centos7.0安装Nginx1.8.1

一、安装Nginx依赖包

系统环境是Centos7.0

技术分享

#yum –y install  pcre-devel

#yum –y install openssl-devel

#yum –y install gcc

#./configure --prefix=/usr/local/nginx --with-http_ssl_module--with-http_spdy_module --with-http_stub_status_module --with-pcre

注释:

//--with-http_stub_status_module:支持nginx状态查询--with-http_ssl_module:支持https
--with-http_spdy_module
:支持googlespdy,想了解请百度spdy,这个必须有ssl的支持
--with-pcre
:为了支持rewrite重写功能,必须制定pcre

1.gcc-----------------必不可少的

2.zlib-----------------gzip需要

3.openssl(包括openssl-devel)-----SSL支持需要

4.pcre(包括pcre-devel)----让nginx支持正则表达式

#make

#make install

2、启动服务

#/usr/local/nginx-1.8.1/sbin/nginx

注意:

1)客户机测试需把Nginx服务器防火墙关闭

#service firewalld stop

2)如果修改配置文件则需要重新启动服务,

#/usr/local/nginx-1.8.1/sbin/nginx –s reload

技术分享

 


本文出自 “向ITAT看齐” 博客,请务必保留此出处http://zhangshuai2010.blog.51cto.com/1511867/1981885

Centos7.0安装Nginx1.8.1

标签:zabbix_nginx

原文地址:http://zhangshuai2010.blog.51cto.com/1511867/1981885

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