All Projects → 78 → Ssbc

78 / Ssbc

Licence: gpl-2.0
手撕包菜网站

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Ssbc

Snail
基于Java、JavaFX开发的下载工具,支持下载协议:BT(BitTorrent、磁力链接、种子文件)、HLS(M3U8)、FTP、HTTP。人家才不要你的⭐⭐呢,哼
Stars: ✭ 102 (-92.62%)
Mutual labels:  dht, torrent, magnet
bthello
Python3 DHT 磁力种子爬虫 种子解析 种子搜索 演示地址
Stars: ✭ 43 (-96.89%)
Mutual labels:  torrent, dht, magnet
Magnet And Torrent Search Engine
磁力链接和 BT 种子的搜索引擎
Stars: ✭ 154 (-88.86%)
Mutual labels:  dht, torrent, magnet
peerstohttp
Simple torrent proxy to http stream controlled over REST-like api
Stars: ✭ 30 (-97.83%)
Mutual labels:  torrent, dht, magnet
Bt
BitTorrent library and client with DHT, magnet links, encryption and more
Stars: ✭ 2,011 (+45.51%)
Mutual labels:  dht, torrent, magnet
torrent-spider
基于DHT的p2p网络资源爬虫
Stars: ✭ 65 (-95.3%)
Mutual labels:  torrent, dht, magnet
torrent2magnet
种子转磁力链工具
Stars: ✭ 74 (-94.65%)
Mutual labels:  torrent, magnet
Zsky
DHT磁力链接magnet BT搜索引擎,纯Python开发
Stars: ✭ 256 (-81.48%)
Mutual labels:  dht, magnet
Gdht
A distributed self-host DHT torrent search suite
Stars: ✭ 86 (-93.78%)
Mutual labels:  dht, torrent
Itorrent
Torrent client for iOS 9.3+
Stars: ✭ 632 (-54.27%)
Mutual labels:  torrent, magnet
gude
gude - 一个C++编写的DHT爬虫,用于爬取DHT网络上的torrent文件
Stars: ✭ 190 (-86.25%)
Mutual labels:  torrent, dht
Aria2.js
JavaScript library for aria2, "The next generation download utility."
Stars: ✭ 471 (-65.92%)
Mutual labels:  dht, magnet
Metadata
a infohash metadata collector
Stars: ✭ 21 (-98.48%)
Mutual labels:  dht, torrent
torrent
Bittorrent library implemented in pure Dart. [WIP, early development stage]
Stars: ✭ 26 (-98.12%)
Mutual labels:  torrent, dht
magnet-link
DEPRECATED: Get a magnet link from a torrent file.
Stars: ✭ 65 (-95.3%)
Mutual labels:  torrent, magnet
Torrentleech Gdrive
It is a fork of 'PublicLeech' with support of uploading files and foder to gdrive or any drive rclone.org support. Like onedrive, mega and so on. Now supports Unzip, unrar, untar too. Now you all can also mirror the telegram files to your respective cloud too.
Stars: ✭ 353 (-74.46%)
Mutual labels:  torrent, magnet
URL-Magnet-Cloud-Uploader-Heroku
Aria 2 Rclone Remote URL /magnet Clouds upload via HEROKU
Stars: ✭ 99 (-92.84%)
Mutual labels:  torrent, magnet
Animetrackerlist
动漫磁性链接加速方案(animeTrackerList)
Stars: ✭ 572 (-58.61%)
Mutual labels:  torrent, magnet
Torrenter
Simple nodejs package to download torrents using torrent-indexer and webtorrent, especially movie and series.
Stars: ✭ 42 (-96.96%)
Mutual labels:  torrent, magnet
Bittorrent Dht
🕸 Simple, robust, BitTorrent DHT implementation
Stars: ✭ 1,004 (-27.35%)
Mutual labels:  dht, torrent

ssbc

手撕包菜网站

安装说明

使用CentOS7操作系统。

数据库

  1. 按照MongoDB
yum install mongodb mongodb-server
  1. 运行MongoDB
service mongod start

NodeJS

  1. 按照nodejs10
curl -sL https://rpm.nodesource.com/setup_10.x | bash -
yum install nodejs
  1. 安装pm2
npm install -g pm2
  1. 运行环境
cd spider && npm install && cd ..
cd web && npm install && npm run build && cd ..

爬虫网站

  1. 启动爬虫
cd spider/ && pm2 start ecosystem.config.js && cd ..
  1. 启动web
cd web && pm2 start ecosystem.config.js && cd ..
  1. 配置web 配置nginx访问web页面。
yum install nginx
service nginx start
vim /etc/nginx/conf.d/ssbc.conf

加入以下配置。

server {
    listen 80;
    server_name www.xxx.com;
    location / {
        proxy_pass http://localhost:3001;
    }
}

搜索引擎

  1. 安装SphinxSearch
yum install http://sphinxsearch.com/files/sphinx-2.3.2-1.rhel7.x86_64.rpm
  1. 创建目录
mkdir -p /data/bt/index/db /data/bt/index/binlog
  1. 初始化索引

cd spider indexer -c sphinx.conf hash searchd -c sphinx.conf

网站说明

这是 www.shousibaocai.org 的网站源代码。 开源的目的是为了促进技术交流和相互学习,把DHT与搜索引擎技术应用到更广泛的领域去。

本站于2015年5月使用django改写。 本站于2019年使用nodejs改写。 与爬虫相关的代码都在目录spider目录下。

相关文章请查看作者博客: http://xiaoxia.org/2015/05/15/shousibaocai-opensource/

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].