Skip to content

Cloudreve 网盘服务

Cloudreve 可以让您快速搭建起公私兼备的网盘系统。Cloudreve 在底层支持不同的云存储平台,用户在实际使用时无须关心物理存储方式。你可以使用 Cloudreve 搭建个人用网盘、文件分享系统,亦或是针对大小团体的公有云系统。

安装 & 启动

使用 systemctl 管理

  • 创建一个 systemd 服务文件
shell
vim /etc/systemd/system/cloudreve.service
  • 添加内容
shell
[Unit]
Description=Cloudreve
After=network.target

[Service]
WorkingDirectory=/root/cloudreve
ExecStart=/root/cloudreve/cloudreve
Restart=always
User=root
Environment=PORT=5212

[Install]
WantedBy=multi-user.target
  • 运行
shell
systemctl daemon-reload
systemctl enable --now cloudreve
systemctl start cloudreve
systemctl status cloudreve

使用

  • 管理面板,可添加三方存储策略。服务器只跑应用
  • web 上传,下载。
  • 包含 iOS 客户端
  • 更多的,自行安装探索

Released under the MIT License.