使用阿里云服务器时,我们发现它是非常干净的,干净到几乎什么都没有安装。所以在安装Nginx时我们需要先做些准备。
安装Nginx需要 SSL支持以及pcre的支持
安装pcre的支持需要先装C++环境。
所以,我们首先需要安装C++环境
这一步非常简单,我们直接输入指令
yum install -y gcc gcc-c++
回车,OK。
如果安装失败,看是yum没有安装还是没有找到相关的文件,要么百度下安装,要么配置其他的站点,这里就不多说了,baidu上都有。
然后我们开始安装pcre的支持
如果通过FTP的方式,下载地址为:ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
如果通过http的方式,下载地址为:http://sourceforge.net/projects/pcre/files/pcre/
我安装的是 pcre-8.34
tar -zxvf pcre-8.34.tar.gz
cd pcre-8.34/
./configure --enable-utf8
make && make install
接下来我们开始安装ssl
http://www.openssl.org/source/ 这里可以下载
tar -ixvf openssl-1.0.0l.tar.gz
cd openssl-1.0.0l
./configure
make && make install
最后开始安装Nginx
下载地址http://nginx.org/en/download.html
选择需要下载的版本
我现在的nginx-1.5.10
tar zxvf nginx-1.5.10.tar.gz
cd nginx-1.5.10
./configure --prefix=/usr/local/nginx --with-pcre=/usr/local/pcre-8.34 --with-http_ssl_module --with-openssl=/usr/local/openssl-1.0.0l
make && make install
到这里,你的Nginx已经安装完成