X
返回

Nginx编译安装

文章信息:
  • 分类:服务器部署
  • 阅读量:3680
  • 创建时间:2022-11-19
  • 更新时间:1年前

下载Nginx

打开安装目标目录

cd /usr/local/src/

Nginx官网 查找要下载的版本号

wget https://nginx.org/download/nginx-1.23.2.tar.gz

解压压缩包并删除

tar -xvzf nginx-1.20.2.tar.gz && rm -rf nginx-1.20.2.tar.gz

添加配置

按照自己的需求更改

./configure --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --add-dynamic-module=/usr/local/src/ngx_brotli

编译安装

make install

检查安装

nginx -V

添加脚本

sudo cp objs/nginx /usr/sbin/nginx

调试

nginx -v
#nginx version: nginx/1.23.2

评论/留言