有时我们不想使用系统自带的pcre,zlib,openssl来编译nginx时,可以下载想要的版本的源码来编译。(这种方式下,上面的一些rpm包估计可以简化一些)
pcre-8.35.tar.gz : https://sourceforge.net/projects/pcre/files/pcre/8.35/
zlib-1.2.11.tar.gz: https://sourceforge.net/projects/libpng/files/zlib/1.2.11/
OpenSSL_1_0_2q: https://www.openssl.org/source/old/1.0.2/
或 https://github.com/openssl/openssl/releases/tag/OpenSSL_1_0_2q
> ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/sbin --with-pcre=../other_packages/pcre-8.35 --with-openssl=../other_packages/openssl-1.0.2q --with-zlib=../other_packages/zlib-1.2.11 --with-stream --with-http_stub_status_module --with-http_ssl_module --without-http-gzip_moule --add-module=../other_modules/nginx-sticky-module-ng
--add-module=../other_modules/headers-more-nginx-module