privtracker/README.md

27 lines
748 B
Markdown
Raw Permalink Normal View History

2021-03-02 03:59:16 -06:00
# [Private BitTorrent tracker for everyone](https://privtracker.com/)
2020-12-07 02:37:47 -06:00
2022-11-09 03:03:38 -06:00
PrivTracker allows to share torrent files just with your friends, nobody else.
2020-12-07 02:37:47 -06:00
Unlike public trackers, it shares peers only within a group which is using the same Announce URL.
It really works like a private tracker, but can be generated with one click of a button.
---
### Build
```bash
# Clone this repository.
$ git clone https://github.com/meehow/privtracker.git
# cd into the directory
$ cd privtracker
# Run go build
$ go build
```
### Usage
```bash
# Runs on port 1337 and redirects to privtracker.com by default.
$ ./privtracker
```
```bash
# Export PORT and DOMAIN variables to use custom values.
$ export PORT=12345 DOMAIN=customprivtracker.com; ./privtracker
```