记录一下linux下安装nginx的所需要的配置。
首先从 nginx官网 下载所需要的版本,复制链接,执行
wget http://nginx.org/download/nginx-1.8.0.tar.gz
在你的linux目录下会有nginx-1.8.0.tar.gz压缩包,解压到当前目录。
tar -zxvf nginx-1.8.0.tar.gzcd nginx-1.8.0/./configure
这个时候一般会出现错误,我们需要安装nginx所依赖的包
sudo apt-get install gcc g++ make automake python perl
一般这个时候只是./configure的时候还会出现错误
./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option, or install the PCRE library into the system, or build the PCRE library statically from the source with nginx by using --with-pcre=<path> option.
这个时候我们需要安装PCRE所需要的包。
sudo apt-get update sudo apt-get install libpcre3 libpcre3-dev sudo apt-get install openssl libssl-dev
现在执行./configure就成功了。安装结束。
时间: 2024-10-06 07:31:00