Open supkrogoth opened 6 years ago
bash c.sh -v
重复执行以上代码手动升级,同时会更换新的 UUID,其它配置不变。
或者执行以下代码更新,不更换 UUID
bash <(curl -L -s https://install.direct/go.sh)
rm -rf /www/V2rayPro.zip
希望能够加入每天凌晨自动升级V2ray内核,自动重启vps的功能。
# 安装定时软件
[ centos 系统 ]
yum -y install crontabs
[ debian 系统 ]
apt -y install cron
# 设置每天12点30重启(服务器时区的中午)
crontab -l >> crontab.txt
echo "30 12 * * * /sbin/reboot" >> crontab.txt
crontab crontab.txt
rm -f crontab.txt
# 查看历史重启记录
last reboot
很抱歉,这个版的脚本中不打算加入这个功能。
1.WebSocket+TLS+Web是个古老、完善的配置了,新版内核短期不会再有什么优化,升不升级并没有什么意义。
2.很多客户端内核版本通常都会滞后,或者只更新稳定版本的内核。服务器和客户端版本内核不一致只会让体验变差。
当然,你可以执行以下命令手动添加:
# 安装定时软件 cron (略)
# 设置每天12点20自动升级(服务器时区)
crontab -l >> crontab.txt
echo "20 12 * * * bash <(curl -L -s https://install.direct/go.sh)" >> crontab.txt
crontab crontab.txt
rm -f crontab.txt
# 查看定时列表
crontab -l
再补一个命令,清除所有定时任务:
touch crontab.txt
crontab crontab.txt
rm -f crontab.txt
非常感谢!
#域名301重定向
www.mmp.wiki {
redir https://mmp.wiki{uri}
}
http://mmp.wiki:80 {
redir https://mmp.wiki:443{url}
}
https://mmp.wiki:443 {
gzip
tls admin@mmp.wiki
root /www
proxy /5a3e93d2 localhost:42494 {
websocket
header_upstream -Origin
}
fastcgi / /run/php/php7.0-fpm.sock php
# 伪静态开始
rewrite {
if {path} not_match ^\/admin
to {path} {path}/ /index.php?{query}
}
# 伪静态结束
}
这是typecho的配置文件
访问www 跳转到非www 添加了伪静态
非常感谢作者,省却的很多查资料修改配置的时间,收下了。
脚本的V2ray 最新内核能自动升级吗?能否一键删除服务器中储存的客户端和配置文件?