如何在linux下编译nginx
发布网友
发布时间:2022-04-20 17:50
我来回答
共1个回答
热心网友
时间:2022-04-30 09:13
安装nginx
1.下载
2.解压
复制代码代码如下:
tar
-zxvf
nginx-1.7.0.tar.gz
3.编译和安装
执行如下命令:
# cd nginx-1.7.0# ./configure --prefix=/usr/local/nginx-1.7.0 \--with-http_ssl_mole --with-http_spdy_mole \--with-http_stub_status_mole --with-pcre
–with-http_stub_status_mole:支持nginx状态查询–with-http_ssl_mole:支持https–with-http_spdy_mole:支持google的spdy,想了解请百度spdy,这个必须有ssl的支持–with-pcre:为了支持rewrite重写功能,必须制定pcre最后输出如下内容,表示configure
OK了。