磁力種子搜索網站(一個支持磁力鏈和種子的在線搜索雲播Web客戶端)

說明:live-torrent是一個功能強大的BT Web客戶端工具,支持BT搜索和雲播,我們可以直接使用程序內置的引擎搜索查找資源,也可以自行上傳種子文件或磁力鏈接添加任務,程序支持自動識別種子內視頻文件,點擊播放按鈕可以直接在線播放,該程序支持對接OpenSubtitles,自動給視頻添加字幕。同時也提供一個熱門電影排行榜,並提供對應資源給你播放和下載。不過唯一有點小遺憾的就是,不支持在線搜索中文資源,所以中文資源隻能自己上傳種子文件進行識別播放下載。截圖手動安裝Github地址:https://github.com/Davenchy/live-torrent1、安裝NodeJS#Debian/Ubuntu系統
curl -sL https://deb.nodesource.com/setup_10.x | bash –
apt install -y git nodejs

#CentOS系統
curl -sL https://rpm.nodesource.com/setup_10.x | bash –
yum install nodejs git -y
2、安裝live-torrentgit clone https://github.com/Davenchy/live-torrent
cd live-torrent
#安裝依賴
npm i
#打包運行
npm run build
nohup npm start&裝好後通過ip:3000訪問Web客戶端瞭。Docker安裝1、安裝Docker#CentOS 6
rpm -iUvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
yum update -y
yum -y install docker-io
service docker start
chkconfig docker on

#CentOS 7、Debian、Ubuntu
curl -sSL https://get.docker.com/ | sh
systemctl start docker
systemctl enable docker
2、安裝live-torrentdocker run –restart=always –name live-torrent -d -p 8080:8080 davenchy/live-torrent
然後就通過ip:8080訪問Web客戶端瞭。最後如果你訪問不瞭Web端,可能要檢查下防火墻端口,有安全組的也要放行下相關端口。這裡提供個CentOS系統防火墻開啟命令,比如開放3000端口,大致如下:#CentOS 6
iptables -I INPUT -p tcp –dport 3000 -j ACCEPT
service iptables save
service iptables restart

#CentOS 7
firewall-cmd –zone=public –add-port=3000/tcp –permanent
firewall-cmd –reload

本文出自快速备案,转载时请注明出处及相应链接。

本文永久链接: https://kuaisubeian.cc/47947.html

kuaisubeian