BioTorrents.de’s version of Gazelle
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.template 371B

1234567891011121314151617
  1. <?php
  2. # ...
  3. // Tracker urls to be added to torrent files à la http://bittorrent.org/beps/bep_0012.html
  4. define('ANNOUNCE_URLS', [
  5. [ # Tier 1
  6. 'https://track.biotorrents.de:443',
  7. ],
  8. [ # Tier 2
  9. 'udp://tracker.coppersurfer.tk:6969/announce',
  10. 'udp://tracker.cyberia.is:6969/announce',
  11. 'udp://tracker.leechers-paradise.org:6969/announce'
  12. ]
  13. ]);
  14. # ...