使用的系统是armbian
1.下载nginx源代码
wget http://nginx.org/download/nginx-1.17.0.tar.gz
2.解压nginx源代码
tar xvzf nginx-1.17.0.tar.gz
3.make前配置检查
./configure --with-http_ssl_module
4.应该会有错误,一般是pcre和zlib的开发环境没有安装导致的
sudo apt install libpcre3-dev zlib1g-dev
如果如果openssl没有安装还要安装openssl以及开发环境 sudo apt install openssl libssl-dev
5.make 然后 make install即可