mirror of https://github.com/helloxz/dnmp.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
85 lines
2.1 KiB
85 lines
2.1 KiB
12 months ago
|
#!/bin/bash
|
||
|
|
||
|
#http://soft.xiaoz.org/xcdn/xcdn-binary-alpine-1.20.2-20220518_x86_64.tar.gz
|
||
|
nginx_version='1.24.0'
|
||
|
THEDATE='20231121'
|
||
|
#安装依赖
|
||
|
depend(){
|
||
|
apk update
|
||
|
apk add --no-cache --virtual .build-deps \
|
||
|
openssl-dev \
|
||
|
pcre-dev \
|
||
|
gd-dev \
|
||
|
libmaxminddb-dev \
|
||
|
git \
|
||
|
wget \
|
||
|
curl \
|
||
|
bash \
|
||
|
openssh-client \
|
||
|
logrotate
|
||
|
}
|
||
|
|
||
|
#设置时间
|
||
|
set_time(){
|
||
|
#更新软件
|
||
|
apk update
|
||
|
#安装timezone
|
||
|
apk add -U tzdata
|
||
|
#查看时区列表
|
||
|
ls /usr/share/zoneinfo
|
||
|
#拷贝需要的时区文件到localtime
|
||
|
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
|
||
|
#查看当前时间
|
||
|
date
|
||
|
#为了精简镜像,可以将tzdata删除了
|
||
|
apk del tzdata
|
||
|
}
|
||
|
|
||
|
install_before(){
|
||
|
#脚本添加执行权限
|
||
|
chmod +x /root/*.sh
|
||
|
cp /root/run.sh /usr/sbin/
|
||
|
cp /root/xc.sh /usr/sbin/
|
||
|
#创建软连接
|
||
|
ln -s /usr/local/nginx/sbin/nginx /usr/sbin/nginx
|
||
|
#创建缓存文件夹
|
||
|
mkdir -p /data/caches
|
||
|
#创建站点文件夹
|
||
|
mkdir -p /var/www/html
|
||
|
}
|
||
|
|
||
|
#安装nginx
|
||
|
install_nginx(){
|
||
|
cd /usr/local
|
||
|
NGINX_NAME=xcdn-binary-alpine-${nginx_version}-${THEDATE}_x86_64.tar.gz
|
||
|
wget http://soft.xiaoz.org/xcdn/${NGINX_NAME}
|
||
|
tar -xvf ${NGINX_NAME}
|
||
|
rm -rf ${NGINX_NAME}
|
||
|
#mv /usr/local/nginx/conf/nginx.conf.bak /usr/local/nginx/conf/nginx.conf
|
||
|
#环境变量与服务
|
||
|
echo "export PATH=$PATH:/usr/local/nginx/sbin" >> /etc/profile
|
||
|
export PATH=$PATH:'/usr/local/nginx/sbin'
|
||
|
|
||
|
#日志分割
|
||
|
#wget --no-check-certificate https://raw.githubusercontent.com/helloxz/nginx-cdn/master/etc/logrotate.d/nginx -P /etc/logrotate.d/
|
||
|
wget --no-check-certificate https://raw.githubusercontent.com/helloxz/xcdn/alpine/conf/nginx -P /etc/logrotate.d/
|
||
|
|
||
|
echo "------------------------------------------------"
|
||
|
echo "XCDN installed successfully."
|
||
|
}
|
||
|
|
||
|
#添加定时任务
|
||
|
add_crontab() {
|
||
|
echo "添加定时任务"
|
||
|
# echo "*/3 * * * * /root/pull.sh" >> /etc/crontabs/root
|
||
|
echo "50 23 * * * /usr/sbin/logrotate -f /etc/logrotate.d/nginx" >> /etc/crontabs/root
|
||
|
}
|
||
|
|
||
|
#清理工作
|
||
|
clean_work(){
|
||
|
rm -rf /var/cache/apk/*
|
||
|
rm -rf /root/.cache
|
||
|
rm -rf /tmp/*
|
||
|
}
|
||
|
|
||
|
install_before && depend && set_time && install_nginx && add_crontab && clean_work
|