1、登录到自己的ECS 实例;
2、nginx 下载页面:http://nginx.org/en/download.html
3、我下载了 nginx-1.12.0:
wget -o nginx-1.12.0.tar.gz http://nginx.org/download/nginx-1.12.0.tar.gz
4、解压 nginx-1.12.0:
tar -zxf nginx-1.12.0.tar.gz
5、检测安装环境:
./configure
6、发现需要装 zlib(http://www.zlib.net/),下载并安装:
wget -o zlib-1.2.11.tar.gz http://www.zlib.net/zlib-1.2.11.tar.gz
./configure
make
make install
8、再次检测,发现需要安装 pcre(下载地址:https://ftp.pcre.org/pub/pcre/):
wget -o pcre-8.40.tar.gz https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz
./configure
make
make install
8、 编译安装 nginx:
./configure
make
make install
安装成功!