当前位置:   article > 正文

nginx1.24源码编译安装(Linux7.9环境)

nginx1.24源码编译安装(Linux7.9环境)

1、下载nginx安装包tar.gz官方下载地址

cd /usr/local/
wget https://nginx.p2hp.com/download/nginx-1.24.0.tar.gz
tar -xvf nginx-1.24.0.tar.gz
cd nginx-1.24.0
  • 1
  • 2
  • 3
  • 4

安装所需依赖项

sudo yum install gcc gcc-c++ make -y
sudo yum install pcre pcre-devel
sudo yum install openssl-devel
  • 1
  • 2
  • 3

配置编译选项 通过运行 ./configure 脚本来配置 Nginx。这里可以添加或改变默认配置选项。常见的选项包括:
–prefix:指定 Nginx 安装的目标目录。
–with-http_ssl_module:添加 HTTPS 支持。
–with-pcre:使用 PCRE 库来使用 http_rewrite_module 重写 URL。
示例配置命令:

./configure --prefix=/usr/local/nginx \
            --sbin-path=/usr/sbin/nginx \
            --modules-path=/usr/lib/nginx/modules \
            --conf-path=/usr/local/nginx/nginx.conf \
            --error-log-path=/var/log/nginx/error.log \
            --http-log-path=/var/log/nginx/access.log \
            --pid-path=/var/run/nginx.pid \
            --user=nginx \
            --group=nginx \
            --with-http_ssl_module \
            --with-http_realip_module \
            --with-http_auth_request_module \
            --with-http_sub_module \
            --with-http_gzip_static_module \
            --with-http_stub_status_module \
            --with-file-aio \
            --with-threads \
            --with-http_v2_module
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

最后执行

make
make install
  • 1
  • 2

查看版本

[root@localhost nginx-1.24.0]# nginx -v
nginx version: nginx/1.24.0
  • 1
  • 2

即可编辑nginx.conf文件

vi /usr/local/nginx/nginx.conf
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/151010
推荐阅读
相关标签
  

闽ICP备14008679号