Nginx 新增未安装模块

已经安装nginx,新增模块

  • 查看已经安装本比 nginx -V

  • 将nginx备份 mv /usr/local/nginx /usr/local/nginx_bak

  • 下载已经安装版本编译包 wget http://nginx.org/download/nginx-1.17.3.tar.gz

  • 解压安装包 tar -zxvf nginx-1.17.3.tar.gz

  • cd nginx-1.17.3

  • ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-file-aio --with-http_realip_module --with-stream --with-mail

  • make & make install

  • nginx -V 查看configure arguments

猜你喜欢

转载自www.cnblogs.com/shanchenchen1991/p/12799814.html