自学内容网 自学内容网

mac 安装最新版nginx

1. clone最新版本源代码:

 git clone https://github.com/nginx/nginx.git

2. 下载PCRE 
没有PCRE那我们就下,下载地址:https://sourceforge.net/projects/pcre/files/pcre/,笔者下载的pcre-8.45.zip,下载之后解压到nginx目录,当然你也可以解压到其他目录 

# zip解压命令
unzip pcre-8.45.zip

3.配置

./auto/configure --prefix=/usr/local/nginx --with-http_ssl_module --with-debug --with-threads  --with-stream=dynamic --with-stream_realip_module --with-pcre=./pcre-8.45

4. 编译&&安装

make && make install

5. 运行

 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf


原文地址:https://blog.csdn.net/CYBEREXP2008/article/details/142921913

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!