Nginx最佳安装与优化
Posted myway_liang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx最佳安装与优化相关的知识,希望对你有一定的参考价值。
wget http://nginx.org/download/nginx-1.11.13.tar.gz tar zxvf nginx-1.11.13.tar.gz cd nginx-1.11.13 yum -y install pcre pcre-devel gcc* ncurser-devel perl openssl-devel whereis cc gcc ./configure --prefix=/usr/local/nginx --with-pcre --with-http_stub_status_module --with-http_ssl_module
//--with-pcre在Nginx添加对正则表达式的支持
//--with-http_stub_status_module添加对状态页面的支持
//--with-http_ssl_module在Nginx添加对https站点的支持
make make install
以上是关于Nginx最佳安装与优化的主要内容,如果未能解决你的问题,请参考以下文章