Ubuntu安装nginx, the HTTP rewrite module requires the PCRE library 的解决方法
解压nginx-1.9.12.tar.gz后,执行下面的命令安装
./configure --prefix=/usr/bin/
出现the HTTP rewrite module requires the PCRE library 的错误。
解决方法
需要安装pcre包
sudo apt-get update sudo apt-get install libpcre3 libpcre3-dev
你可能还需要安装
sudo apt-get install openssl libssl-dev