sqtracker is a modern private BitTorrent tracker platform.
It implements all of the features required to run a private (or public) tracker and does not focus on any one specific type of content. It is suitable for running a tracker site of any kind.
Check out the demo at demo.sqtracker.dev.
Please join the Discord server for support and general chat.
- Accounts
- Registration modes (open / closed / invite only)
- Sending of invites
- Account management (2FA, password resets etc.)
- Bonus points system (purchase invites, upload etc.)
- Option to browse torrents without logging in (for search engine discovery)
- Torrent management
- Uploading torrents with rich metadata (title, description, source, mediainfo, category, tags etc.)
- Searching torrents or browsing by category or tags
- Freeleech options (specific torrents, site-wide)
- Torrent grouping (e.g. different formats of same movie)
- Bookmarks
- Upload / download tracking
- Track how much content each user has uploaded / downloaded
- Track ratios
- Track hit'n'runs
- Limit downloading per user based on ratio, HnRs, or both
- Award bonus points based on upload
- User interaction
- Commenting on torrents and announcements
- Up / down voting torrents
- Requests system
- Moderation
- Staff / admin privileges
- Reporting torrents to be reviewed by staff
- Detailed stats available to admins
- Wiki system
- Announcements / news posts
- Ban / unban users
- Tracker appearance
- Configurable theme / CSS
The roadmap is still being expanded.
- Forum support & direct messages
- Better profiles (avatar, bio etc.)
- Premoderation option
- Anti-cheat
- Localisation (ongoing)
All configuration is provided via a single JavaScript file named config.js
. This file must export an object containing 2 keys: envs
and secrets
.
An example configuration can be found in config.example.js
. This file contains examples and explanations for each config value.
If your configuration is not valid, sqtracker will fail to start.
On first start up, sqtracker will create a user named admin
with the password admin
. A confirmation email will be sent to the admin email address you specified in your config file. Once logged in for the first time, you should change the admin password immediately. This admin user can be used to send other admin invites (normal accounts cannot send admin invites). This user cannot be deleted/banned.
An sqtracker deployment is made up of 4 separate components. These are:
The sqtracker API service handles all actions taken by users (authentication, uploads, searching etc.), implements the BitTorrent tracker specification to handle announces and scrapes, and provides the RSS feed.
The sqtracker client service provides the modern, responsive web interface that users interact with.
MongoDB is a popular and powerful document-oriented database. Version 5.2 or higher is required.
The HTTP proxy allows the client, API, and BitTorrent tracker to all be accessible via a single endpoint.
The sqtracker platform is designed to be deployed via Docker. Once a configuration file is created, deploying is as simple as running docker compose up -d
at the root of the project.
To get HTTPS working, you will need to change a few values:
- In
docker-compose.yml
:--certificatesresolvers.tlsresolver.acme.email=
needs to have a valid email address. - In
traefik.yml
: 2 instances ofHost(`example.com`)
need to contain your domain name.
If you change the name of any services in docker-compose.yml
, you will also need to update the relevant host names in your config.js
and traefik.yml
files.
sqtracker is reasonably light-weight, but you should still invest in a VPS with decent resources if you want to run a fast and performant tracker.
Alternatively, you can deploy each service individually on a PaaS cloud platform such as Northflank.
You will need to deploy each of the 4 components listed above. The Docker images for the client and API services are published in this repository.
Pull requests are welcome! If you fork sqtracker and think you have made some improvements, please open a pull request so other users deploying sqtracker from this repository can also get the benefits.
Please see the CONTRIBUTING document for guidance on code style etc.
A lot of hard work goes into building and maintaining sqtracker. If you're feeling kind, my PayPal link is in the GitHub "Sponsor this project" section. If you would prefer a different method, please reach out to me on Discord.
GNU GPLv3