diff --git a/source/_posts/2023/08/linux-alist.md b/source/_posts/2023/08/linux-alist.md
index 2bd17ad..f88d449 100644
--- a/source/_posts/2023/08/linux-alist.md
+++ b/source/_posts/2023/08/linux-alist.md
@@ -1,5 +1,5 @@
---
-title: linux安装alist,反向代理教程
+title: linux安装Openlist,反向代理教程
tags:
- linux
categories:
@@ -10,104 +10,34 @@ permalink: /articles/2023/linux-alist.html
date: 2023-08-14 08:13:33
---
-由于本文具有时效性,在此注明最后编辑日期,本文会不定期更新,但仅限我的blog,其它地方太麻烦了。 **最后编辑于:** 2023-12-23
+由于本文具有时效性,在此注明最后编辑日期,本文会不定期更新,但仅限我的blog,其它地方太麻烦了。 **最后编辑于:** 2025-06-29
-# 建议
+## 建议
无论您是否需要此教程,都建议您向您的alist中注入以下代码,以规避不必要的责任
粘贴至设置-全局-自定义内容即可
-```
+
+```javascript
```
-# 安装
-## 使用Docker
-```
-docker run -d --restart=always -v /etc/alist:/opt/alist/data -p 5244:5244 -e PUID=0 -e PGID=0 -e UMASK=022 --name="alist" xhofe/alist:latest
-# 随机生成一个密码
-docker exec -it alist ./alist admin random
-# 手动设置一个密码,`NEW_PASSWORD`是指你需要设置的密码
-docker exec -it alist ./alist admin set NEW_PASSWORD
-```
-(1Panel面板中有一键部署)
-[1Panel](https://1panel.cn/)
-## 一键脚本
-如果你使用面板安装,先在面板创建一个网站,然后 cd 切换到网站目录
+## 安装
-(仅适用于linux arm64/amd64平台)
+{% note warning %}
+警告: Alist 已经被国内商业灰产公司收购,请不要继续使用它,而是使用由开源社区维护的 [Openlist](https://oplist.org/)
+{% endnote %}
-```
-curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install
-```
+参照 [Openlist 的安装文档](https://oplist.org/zh/guide/install/script.html) 安装
-更新
-
-```
-curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s update
-```
-
-卸载
-
-```
-curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s uninstall
-```
-
-默认安装至opt/alist
-自定义位置(将root替换为你想安装的位置)
-
-```
-# 安装
-curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s install /root
-# 更新
-curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s update /root
-# 卸载
-curl -fsSL "https://alist.nn.ci/v3.sh" | bash -s uninstall /root
-```
-
-* 启动: `systemctl start alist`
-* 关闭: `systemctl stop alist`
-* 状态: `systemctl status alist`
-* 重启: `systemctl restart alist`
-
-安装完成后访问
-
-```
-# 执行 ifconfig 来获取YOURIP
-http://YOURIP:5244
-```
-
-## 获取密码
-
-需要进入脚本安装AList的目录文件夹內执行如下命令
-
-#### 低于v3.25.0版本
-
-```
-./alist admin
-```
-
-#### 高于v3.25.0版本
-
-3.25.0以上版本将密码改成加密方式存储的hash值,无法直接反算出密码,如果忘记了密码只能通过重新 `随机生成` 或者 `手动设置`
-
-```
-# 随机生成一个密码./alist admin random# 手动设置一个密码,`NEW_PASSWORD`是指你需要设置的密码./alist admin set NEW_PASSWORD
-```
-# 警告
-
-> **添加云盘后请及时配置[防盗/元信息]等措施,防止被[爬虫/其他人]恶意[访问/分享]导致帐号被[冻结/禁用]**
->
-> **---alist文档**
-
-# 反向代理
+## 反向代理
反向代理可以将5244端口监听至80/443端口,以此来部署SSL证书和不带端口访问。
## 本地代理
-## 宝塔面板
+### 宝塔面板
[宝塔](https://www.bt.cn/?invite_code=M192aGJreGU=)
@@ -120,36 +50,42 @@ http://YOURIP:5244

3.接着在配置文件中随便找个地方粘贴以下配置:**(记得点保存)**
-```
+```conf
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Range $http_range;
- proxy_set_header If-Range $http_if_range;
+ proxy_set_header If-Range $http_if_range;
proxy_redirect off;
proxy_pass http://127.0.0.1:5244;
# the max size of file to upload
client_max_body_size 20000m;
}
```
+
4.添加A记录到你反向代理服务器的ip地址,使用内网穿透就A解析到内网穿透服务器ip或CNAME到内网穿透服务器域名
-#### **部署SSL**
+
+#### 部署SSL
+
宝塔有一键部署,申请之后记得点保存,也可以使用阿里云或腾讯云的免费证书,用着更舒服

-**1panel面板**
+
+### 1panel
+
1.点击网站--创建网站--反向代理,在代理地址处填写127.0.0.1,主域名替换为你的自定义域名

2.在反向代理网站点击配置--配置文件,在如图位置粘贴以下配置,注意不要放在最后面的那个右花括号后面
-```
+
+```conf
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Range $http_range;
- proxy_set_header If-Range $http_if_range;
+ proxy_set_header If-Range $http_if_range;
proxy_redirect off;
proxy_pass http://127.0.0.1:5244;
# the max size of file to upload
@@ -157,17 +93,20 @@ location / {
}
```
-
+

-#### **部署SSL**
-
+
+#### 部署SSL
+
先在证书页面申请证书,然后如图操作
-
+

+
#### **异地代理**
-
+
只需要把上文需要添加添加的配置文件改为以下配置即可,把第9行的YOURIP改成你alist服务器的公网ip地址1panel记得把代理地址也改成你服务器的公网ip地址。
-```
+
+```conf
# 把第9行的YOURIP改成你alist服务器的公网ip地址
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -175,10 +114,10 @@ location / {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Range $http_range;
- proxy_set_header If-Range $http_if_range;
+ proxy_set_header If-Range $http_if_range;
proxy_redirect off;
proxy_pass http://YOURIP:5244;
# the max size of file to upload
client_max_body_size 20000m;
}
-```
\ No newline at end of file
+```