文章目录
提示:以下是本篇文章正文内容,下面案例可供参考
一、http_geoip_module使用场景
一、区别国内外作HTTP访问规则
二、区别国内城市地域作HTTP访问规则
二、使用步骤
1.使用脚本编译安装nginx,一键部署
#!/bin/bash
#解决软件的依赖关系,需要安装的软件包
yum install epel-release -y
yum install wget -y
yum -y install zlib zlib-devel openssl openssl-devel pcre pcre-devel gcc gcc-c++ autoconf automake make psmisc net-tools lsof vim geoip geoip-devel
#新建luogan用户和组
id xiongxue || useradd xiongxue -s /sbin/nologin
#下载nginx软件
mkdir /xiongxue99 -p
cd /xiongxue99
wget http://nginx.org/download/nginx-1.21.1.tar.gz
#解压软件
tar xf nginx-1.21.1.tar.gz
#进入解压后的文件夹
cd nginx-1.21.1
#编译前的配置
#如果上面的编译前的配置失败,直接退出脚本
if (( $? != 0));then
exit
fi
#编译
make -j 2
#编译安装
make install
#修改PATH变量
echo "PATH=/usr/local/scxiongxue99/sbin:$PATH" >>/root/.bashrc
#执行修改了环境变量的脚本
source /root/.bashrc
#firewalld and selinux
#stop firewall和设置下次开机不启动firewalld
service firewalld stop
systemctl disable firewalld
#临时停止selinux和永久停止selinux
setenforce 0
sed -i '/^SELINUX=/ s/enforcing/disabled/' /etc/selinux/config
#开机启动
chmod +x /etc/rc.d/rc.local
echo "/usr/local/scxiongxue99/sbin/nginx" >>/etc/rc.local
#修改nginx.conf的配置,例如:端口号,worker进程数,线程数,服务域名
sed -i '/worker_processes/ s/1/2/' /usr/local/scxiongxue99/conf/nginx.conf
sed -i '/worker_connections/ s/1024/2048/' /usr/local/scxio