Go to file
2025-01-08 06:59:40 +00:00
.gitignore 1111 2024-09-27 15:32:37 +08:00
index.js 111 2024-11-07 13:14:41 +08:00
index.php 1111 2024-12-21 22:46:55 +08:00
install.sh 1111 2024-12-21 22:48:50 +08:00
obfuscate.js 111 2024-10-15 18:57:56 +08:00
package.json 1111 2024-10-15 18:54:26 +08:00
README.md 更新 README.md 2025-01-08 06:59:40 +00:00
source.js 11 2024-11-07 17:15:39 +08:00

AList 代理服务安装指南

本指南将指导您如何安装和运行 AList 代理服务。AList 是一个支持多种存储的文件列表程序,提供网页浏览和 WebDAV 服务。

安装步骤

一键安装方法, install.sh

curl -o install.sh https://git.x-php.com/XiaoMo/alist-proxy/raw/branch/master/install.sh && chmod +x install.sh && ./install.sh

使用 Node.js 版本

  1. 下载代理脚本

    使用以下命令将代理脚本下载到本地:

    curl -o index.js https://git.x-php.com/XiaoMo/alist-proxy/raw/branch/master/index.js
    
  2. 安装 Node.js

    确保您的系统已安装 Node.js。如果未安装请访问 Node.js 官网下载并安装。

  3. 运行代理服务

    下载完成后,使用以下命令启动代理服务:

    node index.js
    
  4. 访问 AList 界面

    代理服务启动后,您可以通过浏览器访问 AList 的 Web 界面。默认情况下AList 监听在 http://localhost:9001

使用 PHP 版本

  1. 下载代理脚本

    使用以下命令将代理脚本下载到本地:

    curl -o index.php https://git.x-php.com/XiaoMo/alist-proxy/raw/branch/master/index.php
    
  2. 运行代理服务

    使用 Swoole CLI 启动代理服务:

    ./swoole-cli ./index.php
    
  3. 常驻后台运行

    为了让服务在后台持续运行,可以使用 nohup 命令:

    nohup ./swoole-cli ./index.php > /dev/null 2>&1 &
    
  4. 设置自动启动

    (此部分需要根据您的系统和需求进行具体配置,建议查阅相关文档以设置服务的自动启动。)


通过以上步骤,您可以成功安装并运行 AList 代理服务。如需进一步帮助,请参考官方文档或联系技术支持。