Cloud Torrent可以用作远程离线下载的服务器, 通过网页管理、下载、在线查看下载的内容。

1. Features

  • Single binary
  • Cross platform
  • Embedded torrent search
  • Real-time updates
  • Mobile-friendly
  • Fast content server

2. 安装

1
curl https://i.jpillora.com/cloud-torrent! | bash

3.注册为服务(以systemd为例)

新建文件/etc/systemd/system/cloud-torrent.service

内容为:

1
2
3
4
5
6
7
8
9
10
11
[Unit]
Description=cloud-torrent

[Service]
WorkingDirectory=/root/
ExecStart=/usr/local/bin/cloud-torrent --port 8080 --config-path /root/cloud-torrent.json --title "Cloud Torrent" --log --auth "user:password"
Restart=always
RestartSec=3

[Install]
WantedBy=multi-user.target