AList :一款阿里云盘目录列表程序建站文章
导读:建站文章建站文章curl -fsSL "https://nn.ci/alist.sh" | bash -s update卸载curl -fsSL "https://nn.ci网站建设教程网站seo优化培训。
简介
AList是一款阿里云盘的目录文件列表程序,后端基于golang最好的http框架gin,前端使用vue和ant design。没有专门学过前端,大佬轻喷😘
项目地址:
- https://github.com/Xhofe/alist
- https://github.com/Xhofe/alist-web
预览
- https://alist.nn.ci/
如何部署
一键脚本
仅支持Linux-x86_64/aarch64平台。
安装
curl -fsSL "https://nn.ci/alist.sh" | bash -s install DANGER已经安装过再次执行安装会删除之前的数据,更新请使用更新命令。
更新
curl -fsSL "https://nn.ci/alist.sh" | bash -s update卸载 curl -fsSL "https://nn.ci/alist.sh" | bash -s建设网站 uninstall
自定义路径
默认安装在/opt/alist,要自定义安装路径,添加安装路径为第二个参数,必须是绝对路径(路径以alist结尾时直接安装到给定路径,否则会安装在给定路径alist目录下),如安装到/root:
# 安装 curl -fsSL "https://nn.ci/alist.sh" | bash -s install /root # 更新 curl -fsSL "https://nn.ci/alist.sh" | bash -s update /root # 卸载 curl -fsSL "https://nn.ci/alist.sh" | bash -s uninstall /root使用Docker
初始密码请查看日志输出:
docker logs alist # 或者 docker exec -it alist ./alist -password稳定版 docker run -d --restart=always -v /etc/alist:/opt/alist/data -p 5244:5244 --name="alist" xhofe/alist:latest
开发版 docker run -d --restart=always -v /etc/alist:/opt/alist/data -p 5244:5244 --name="alist" xhofe/alist:v2
指定版本
具体见 https://hub.docker.com/r/xhofe/alist
反向代理
程序默认监听5244端口
nginx
在网站的配置文件的server字段中加入
location / { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_redirect off; proxy_pass http://127.0.网站建设教程0.1:5244; # 上传的最大文件尺寸 client_max_body_size 20000m; }CAUTION
如果你使用宝塔,请务必删除以下默认配置
声明: 本文由我的SEOUC技术文章主页发布于:2023-05-28 ,文章AList :一款阿里云盘目录列表程序建站文章主要讲述AList,目录列表,阿里云盘网站建设源码以及服务器配置搭建相关技术文章。转载请保留链接: https://www.seouc.com/article/web_11467.html