下载openssl、pcre、zlib、nginx
$tar -zxvf openssl-1.1.1w.tar.gz
$tar -zxvf pcre-8.45.tar.gz
$tar -zxvf zlib-1.3.1.tar.gz
$tar -zxvf nginx-1.23.4.tar.gz
$cd nginx-1.23.4
$ ./configure \
--with-cc-opt='-static -static-libgcc' \
--with-ld-opt=-static \
--prefix=/opt/nginx \
--with-http_ssl_module \
--with-http_v2_module \
--with-openssl=../openssl-1.1.1w \
--with-pcre=../pcre-8.45 \
--with-zlib=../zlib-1.3.1

$ make && make install

启动
$/opt/nginx/sbin/nginx
停止
$/opt/nginx/sbin/nginx -s quit

标签: none

添加新评论