{"id":13752530,"url":"https://github.com/meehow/privtracker","last_synced_at":"2025-05-15T12:03:00.030Z","repository":{"id":38533668,"uuid":"319112812","full_name":"meehow/privtracker","owner":"meehow","description":"Private BitTorrent tracker generator","archived":false,"fork":false,"pushed_at":"2025-02-04T23:53:49.000Z","size":224,"stargazers_count":695,"open_issues_count":0,"forks_count":31,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-09T11:05:26.772Z","etag":null,"topics":["bittorrent","bittorrent-tracker","privacy","privtracker","torrent","torrent-tracker","tracker"],"latest_commit_sha":null,"homepage":"https://privtracker.com","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/meehow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-06T19:21:56.000Z","updated_at":"2025-04-07T20:30:08.000Z","dependencies_parsed_at":"2023-01-29T02:31:45.738Z","dependency_job_id":"129b9d6c-a2ab-4fe2-93f8-57e2b80aab2c","html_url":"https://github.com/meehow/privtracker","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meehow%2Fprivtracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meehow%2Fprivtracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meehow%2Fprivtracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meehow%2Fprivtracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meehow","download_url":"https://codeload.github.com/meehow/privtracker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254337612,"owners_count":22054253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bittorrent","bittorrent-tracker","privacy","privtracker","torrent","torrent-tracker","tracker"],"created_at":"2024-08-03T09:01:07.185Z","updated_at":"2025-05-15T12:03:00.000Z","avatar_url":"https://github.com/meehow.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# [Private BitTorrent tracker for everyone](https://privtracker.com/)\n\nPrivTracker allows you to share torrent files only with your friends and nobody else.\nUnlike public trackers, it shares peers only within a group using the same announce URL.\nIt really works like a private tracker, but can be generated with one click of a button.\n\n## The Problem PrivTracker Solves\n\nSharing large files has always been difficult without compromising privacy or simplicity.\nCentralized services require full uploads before sharing, often with account registration and fees for large files.\nHosting a file server demands technical knowledge, like opening firewall ports, and requires your computer to stay online.\nPrivTracker solves this by enabling private torrent sharing within a trusted group.\nUsing UPnP, most torrent clients can automatically handle port opening, and only one person in the group needs an open port for everyone to download.\nUnlike public trackers, PrivTracker shares peers' IPs only within the group and keeps files off public networks like DHT, ensuring privacy and efficient sharing.\n\n### Build\n```bash\ngit clone https://github.com/meehow/privtracker.git\ncd privtracker\nmake build\n```\n\nYou can also download pre-built binaries for your system from the [Releases page](https://github.com/meehow/privtracker/releases).\n\n### Run PrivTracker without TLS\n\nBy default, PrivTracker will use port 1337.\n\n```bash\n./privtracker\n```\n\n### Run PrivTracker with automatic TLS / HTTPS\n\nIf you change the port to 443, PrivTracker will enable automatic TLS handling using [Let's Encrypt](https://letsencrypt.org/) to acquire a certificate.\nPort 443 must be accessible from the internet, and you must have a domain name pointing to your server.\n\n```bash\nsudo setcap cap_net_bind_service=+ep privtracker # allow binding to ports below 1024\nPORT=443 ./privtracker\n```\n\n### Example Systemd service\n\nBelow is an example of `/etc/systemd/system/privtracker.service`, which can be used to manage your PrivTracker service.\n\nEnsure the directory paths are correct before using this configuration.\n\n```ini\n[Unit]\nDescription=privtracker\nAfter=network.target\nRequires=network.target\n\n[Service]\nType=simple\nUser=privtracker\nRestartSec=1s\nRestart=on-failure\nEnvironment=PORT=443\nAmbientCapabilities=CAP_NET_BIND_SERVICE\nWorkingDirectory=/home/privtracker/web\nExecStart=/home/privtracker/web/privtracker\n\n[Install]\nWantedBy=multi-user.target\n```\n\n### Example Docker Compose\n\n```yaml\nservices:\n    privtracker:\n        image: meehow/privtracker\n        restart: unless-stopped\n        user: 1000:1000\n        environment:\n            - PORT=1337\n        # volume is only needed if we listed on port 443\n        volumes:\n            - autocert:/.cache/golang-autocert\n        ports:\n            - 1337:1337\n\nvolumes:\n    autocert:\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeehow%2Fprivtracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeehow%2Fprivtracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeehow%2Fprivtracker/lists"}