本文主要是介绍源码配置nginx,分别编写基于RHEL6、RHEL7的脚本,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
配置nginx
安装软件
[root@localhost ~]# wget https://nginx.org/download/nginx-1.20.2.tar.gz
[root@localhost ~]# ls
公共 视频 文档 音乐 anaconda-ks.cfg
模板 图片 下载 桌面 nginx-1.20.2.tar.gz
创建系统用户
[root@localhost ~]# useradd -r -M -s /sbin/nologin nginx
下载相应的依赖包
[root@localhost ~]# yum -y groups mark install 'Development Tools'
[root@localhost ~]# yum -y install pcre-devel openssl openssl-devel gd-devel gcc gcc-c++ make
创建nginx日志存放目录
[root@localhost ~]# mkdir -p /var/log/nginx
[root@localhost ~]# chown -R nginx.nginx /var/log/nginx
[root@localhost ~]# ll -d /var/log/nginx
drwxr-xr-x. 2 nginx nginx 6 10月 31 10:30 /var/log/nginx
编译安装
[root@localhost ~]# tar xf nginx-1.20.2.tar.gz
[root@localhost ~]# cd nginx-1.20.2/
[root@localhost nginx-1.20.2]# ./configure \
> --prefix=/usr/local/nginx \ //指定安装位置
> --user=nginx \ //指定用户
> --group=nginx \ //指定组
> --with-debug \ //将debug功能打开
> --with-http_ssl_module \ //将ssl功能打开
> --with-http_realip_module \ //转发realip功能打开
> --with-http_image_filter_module \ //图片过滤
> --with-http_gunzip_module \ //解压缩
> --with-http_gzip_static_module \ //压缩
> --with-http_stub_status_module \ //查看状态的功能
> --http-log-path=/var/log/nginx/access.log \ //正常日志存放位置
> --error-log-path=/var/log/nginx/error.log //错误日志存放位置
[root@localhost nginx-1.20.2]# make install
配置相对应的环境变量
[root@localhost nginx-1.20.2]# echo 'export PATH=/usr/local/nginx/sbin:$PATH' > /etc/profile.d/nginx.sh
[root@localhost nginx-1.20.2]# source /etc/profile.d/nginx.sh
开启nginx
[root@localhost nginx-1.20.2]# nginx
[root@localhost nginx-1.20.2]# ss -antl
State Recv-Q Send-Q Local Address:Port Peer Address:Port Process
LISTEN 0 511 0.0.0.0:80 0.0.0.0:*
LISTEN 0 128 0.0.0.0:22 0.0.0.0:*
LISTEN 0 128 127.0.0.1:631 0.0.0.0:*
LISTEN 0 128 127.0.0.1:6010 0.0.0.0:*
LISTEN 0 128 [::]:22 [::]:*
LISTEN 0 128 [::1]:631 [::]:*
LISTEN 0 128 [::1]:6010 [::]:*
基于RHEL6编写一个脚本安装nginx
#!/bin/bash# 检查是否以 root 权限运行脚本
if [ "$(id -u)" -ne 0 ]; thenecho "请以 root 权限运行此脚本"exit 1
fi# 安装 Nginx(如果未安装)
if ! rpm -q nginx > /dev/null; thenecho "正在安装 Nginx..."yum install -y nginx
fi# 配置虚拟主机
read -p "请输入域名(例如: example.com): " domain_name
read -p "请输入网站根目录的绝对路径: " web_root# 创建虚拟主机配置文件
cat > /etc/nginx/conf.d/${domain_name}.conf <<EOF
server {listen 80;server_name ${domain_name};root ${web_root};index index.html;location / {try_files $uri $uri/ =404;}
}
EOF# 创建网站根目录
mkdir -p $web_root
chown -R nginx:nginx $web_root# 重新加载 Nginx 配置
systemctl restart nginx# 启用 Nginx 开机自启动
systemctl enable nginxecho "Nginx 配置已完成。"
运行这个脚本
[root@localhost ~]# chmod +x nginx2.sh #分配权限
[root@localhost ~]# ./nginx2.sh
基于RHEL7编写一个脚本安装nginx
#!/bin/bash# 检查是否以 root 权限运行脚本
if [ "$(id -u)" -ne 0 ]; thenecho "请以 root 权限运行此脚本"exit 1
fi# 安装 Nginx(如果未安装)
if ! rpm -q nginx > /dev/null; thenecho "正在安装 Nginx..."yum install -y nginx
fi# 配置虚拟主机
read -p "请输入域名(例如: example.com): " domain_name
read -p "请输入网站根目录的绝对路径: " web_root# 创建虚拟主机配置文件
cat > /etc/nginx/conf.d/${domain_name}.conf <<EOF
server {listen 80;server_name ${domain_name};root ${web_root};index index.html;location / {try_files \$uri \$uri/ =404;}
}
EOF# 创建网站根目录
mkdir -p $web_root
chown -R nginx:nginx $web_root# 检查 Nginx 配置是否正确
if nginx -t > /dev/null 2>&1; then# 重新加载 Nginx 配置systemctl reload nginx# 启用 Nginx 开机自启动systemctl enable nginxecho "Nginx 配置已完成。"
elseecho "Nginx 配置有误,请检查配置文件并重新运行脚本。"
fi
运行
[root@localhost ~]# chmod +x nginx3.sh #分配权限
[root@localhost ~]# ./nginx3.sh
这篇关于源码配置nginx,分别编写基于RHEL6、RHEL7的脚本的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!