下载nginx
解压nginx
下载 openssl 解压
编译nginx
./configure --prefix=/data/nginx --with-mail_ssl_module --with-stream_ssl_module
--with-stream_ssl_preread_module --with-http_ssl_module --build=skylands --with-openssl=/data/openssl/opens
sl-1.1.1f --with-http_v2_module
编译需要注意的几个事项
--prefix=/data/nginx 是指安装路径,需要自行修改
--with-openssl=/data/openssl/opens 这里的路径是指,下载 openssl 解压的目录。用于编译ssl
如无错误,则进行 make && make install
即可安装完成