./configure –prefix=/usr/local/nginx –with-http_image_filter_module –with-http_gzip_static_module -with-http_stub_status_module
1. pcre
./configure: error: the HTTP rewrite module requires the PCRE library.
使用:
sudo apt-get install libpcre3 libpcre3-dev
yum install pcre pcre-devel
###
2. openssl
./configure: error: the HTTP cache module requires md5 functions from OpenSSL library.
使用:
sudo apt-get install libssl-dev openssl
yum install openssl openssl-devel
###
3.gd
./configure: error: the HTTP image filter module requires the GD library.
使用:
sudo apt-get install libgd2-xpm libgd2-xpm-dev
yum install gd gd-devel