OpenSSL已经升级,NGINX如何编译修复?
下载NGINX.1.10.2
解压进入目录
执行
./configure --prefix=/usr/local/nginx --user=www --group=www \
--with-http_stub_status_module --with-http_v2_module --with-http_ssl_module --with-ipv6 --with-http_gzip_static_module \
--with-http_realip_module --with-http_flv_module --with-pcre-jit --with-ld-opt='-ljemalloc' --with-http_mp4_module \
--with-http_gunzip_module --with-http_image_filter_module --with-http_addition_module \
--with-pcre=../pcre-8.38 --add-module=../ngx-fancyindex --add-module=../ngx_http_substitutions_filter_module --add-module=../ngx_http_google_filter_module
make -j $(awk'/processor/{i++}END{print i}'/proc/cpuinfo)&&make install&&cd
service nginx reload
报 make: *** No rule to make target `build', needed by `default'. Stop. 错误
怎么解决?求大神指点!!!
|
|