1、下载nginx安装包tar.gz官方下载地址
bash
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
安装所需依赖项
bash
sudo yum install gcc gcc-c++ make -y
sudo yum install pcre pcre-devel
sudo yum install openssl-devel
配置编译选项 通过运行 ./configure 脚本来配置 Nginx。这里可以添加或改变默认配置选项。常见的选项包括:
--prefix:指定 Nginx 安装的目标目录。
--with-http_ssl_module:添加 HTTPS 支持。
--with-pcre:使用 PCRE 库来使用 http_rewrite_module 重写 URL。
示例配置命令:
bash
./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
最后执行
bash
make
make install
查看版本
bash
[root@localhost nginx-1.24.0]# nginx -v
nginx version: nginx/1.24.0
即可编辑nginx.conf文件
bash
vi /usr/local/nginx/nginx.conf