挂载XiaoYa的Alist Docker镜像扩充海量资源,并实现搜索功能!
首先安装docker,docker安装就不写了,然后安装xiaoya的容器
一键安装和更新容器
curl -s http://docker.xiaoya.pro/update_xiaoya.sh | bash
端口 5678 访问地址为 IP+5678
安装免手机号的宝塔面板7.70
curl -sSO https://raw.githubusercontent.com/8838/btpanel-v7.7.0/main/install/install_panel.sh && bash install_panel.sh
屏蔽手机号
sed -i "s|bind_user == 'True'|bind_user == 'XXXX'|" /www/server/panel/BTPanel/static/js/index.js
删除强制绑定手机js文件
rm -f /www/server/panel/data/bind.pl
安装nginx
安装PHP,最新版如果装不上就装7.2
安装docker管理器
添加计划任务,任务名称按需求填写,脚本内容填写为
docker restart xiaoya
这个任务可以每天4.30更新xiaoya容器的数据
添加两个域名,一个访问自己的alist,一个搜索用
安装alist,比如网站名称为
那么我们的安装命令就是
curl -fsSL "https://nn.ci/alist.sh" | bash -s install /www/wwwroot/pan.m-zi.cn
升级命令是
curl -fsSL "https://nn.ci/alist.sh" | bash -s update /www/wwwroot/pan.m-zi.cn
卸载命令是
curl -fsSL "https://nn.ci/alist.sh" | bash -s uninstall /www/wwwroot/pan.m-zi.cn
安装完成后,登录密码再ssh工具中看
修改alist密码
你如果是使用阿里云、腾讯云、华为云之类的服务器,就要把这个 5244 端口给开一下,同时在宝塔→安全里面也对 5244 端口放行一下
反代alist,反代完成后就不需要输入端口号了
添加xiaoya的网盘到自己的alist中
添加alist搜索
设置-全局修改头部和内容
头部代码:
<style>
input[type=text] {
width: 100%;
box-sizing: border-box;
border-radius: 4px;
font-size: 16px;
font-weight: bold;
color: rgba(111,111,111,100) !important;
background-color: rgba(255, 255, 255, 0) !important;
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 10px 10px 10px 10px;
}
input[type=submit] {
width: 100%;
box-sizing: border-box;
border-radius: 4px;
font-size: 16px;
font-weight: bold;
margin-left: 10px;
background-position: 10px 10px;
background-repeat: no-repeat;
}
</style>
<script src="https://cdn.staticfile.org/jquery/3.6.0/jquery.min.js"></script>
内容代码:把https://你的搜索引擎域名/修改为你自己的
<script>
function search_check(){
let web_content = $("#web_content").val().replace(/s+/g,"");
if(web_content == null || web_content == ""){
alert("搜索内容不能为空");
return false;
}
}
let timer = null;
function check() {
if ($("#root .header-left").length ===1) {
$("#root .header-left").after(`<form method="GET" action="https://你的搜索引擎域名/" onsubmit="return search_check()" key="form-1-1-0"><input type="text" id='web_content' name="box" placeholder="输入搜索关键词" key="input-2-1-1" style="width: 60%;"><input type="submit" value="搜索" style="width: 20%;" /><input type="hidden" name="url" key="input-3-1-3"></form>`);
clearTimeout(timer);
} else {
setTimeout(check);
}
}
check();
</script>
修改搜索引擎内容
删除里面所有容
上传搜索代码文件
双击修改head.txt,修改完成后保存
双击修改index.php,修改完成后保存
路径就是这里的名称
申请免费SSL证书,否则还是搜索不了
这样就完成alist搜索添加了。
同样的道理,如果是自己的网盘加搜索是一样的操作步骤,只不过不需要挂载小雅的容器了。