服务器能正常访问外网(如百度)参考Linux安装nginx
如服务器不能访问外网时,需要安装PCRE库和zlib库后再安装Nginx
下载Nginx
安装时出现如下的错误
./configure: error: the HTTP rewrite module requires the PCRE library.
下载PCRE
安装PCRE的命令
# 解压缩
tar -zxvf pcre-8.45.tar.gz
# 进入目录,运行configure
cd pcre-8.45
./configure --enable-utf8
# 执行make命令
make && make intall
安装时出现如下的错误
./configure: error: the HTTP gzip module requires the zlib library.
下载zlib
安装zlib的命令
# 解压缩
tar -zxvf zlib-1.2.9.tar.gz
# 进入目录,运行configure
cd zlib-1.2.9
./configure
# 执行make命令
make && make intall