Centos7.0安裝Nginx1.8.1
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:支持google的spdy,想了解請百度spdy,這個必須有ssl的支持
--with-pcre:為了支持rewrite
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
本文出自 “ITATPRO出身” 博客,請務必保留此出處http://huotouyihao.blog.51cto.com/2786644/1981882
Centos7.0安裝Nginx1.8.1