mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-04-01 09:35:28 +00:00
move trackers list to json config file
This commit is contained in:
parent
2e9ef16c33
commit
d0db358eba
8 changed files with 71 additions and 60 deletions
|
|
@ -109,27 +109,6 @@ define('COMMENT_DEFAULT_PUBLIC', false);
|
|||
define('COMMENT_MIN_LENGTH', 1);
|
||||
define('COMMENT_MAX_LENGTH', 1000);
|
||||
|
||||
// Trackers
|
||||
define('TRACKER_LINKS', (object)
|
||||
[
|
||||
'Tracker 1' => (object)
|
||||
[
|
||||
'url' => 'http://[201:23b4:991a:634d:8359:4521:5576:15b7]/yggtracker',
|
||||
'announce' => 'http://[201:23b4:991a:634d:8359:4521:5576:15b7]/announce',
|
||||
'stats' => 'http://[201:23b4:991a:634d:8359:4521:5576:15b7]/stats',
|
||||
'scrape' => 'http://[201:23b4:991a:634d:8359:4521:5576:15b7]/scrape',
|
||||
],
|
||||
'Tracker 2' => (object)
|
||||
[
|
||||
'url' => false,
|
||||
'announce' => 'http://[200:1e2f:e608:eb3a:2bf:1e62:87ba:e2f7]/announce',
|
||||
'stats' => 'http://[200:1e2f:e608:eb3a:2bf:1e62:87ba:e2f7]/stats',
|
||||
'scrape' => 'http://[200:1e2f:e608:eb3a:2bf:1e62:87ba:e2f7]/scrape',
|
||||
],
|
||||
// ...
|
||||
]
|
||||
);
|
||||
|
||||
// Yggdrasil
|
||||
define('YGGDRASIL_URL_REGEX', '/^0{0,1}[2-3][a-f0-9]{0,2}:/'); // thanks to @ygguser (https://github.com/YGGverse/YGGo/issues/1#issuecomment-1498182228 )
|
||||
|
||||
|
|
|
|||
16
src/config/trackers.json
Normal file
16
src/config/trackers.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
[
|
||||
{
|
||||
"description":"YGGtracker instance, yggdrasil-only connections",
|
||||
"url":"http://[201:23b4:991a:634d:8359:4521:5576:15b7]/yggtracker",
|
||||
"announce":"http://[201:23b4:991a:634d:8359:4521:5576:15b7]/announce",
|
||||
"stats":"http://[201:23b4:991a:634d:8359:4521:5576:15b7]/stats",
|
||||
"scrape":"http://[201:23b4:991a:634d:8359:4521:5576:15b7]/scrape"
|
||||
},
|
||||
{
|
||||
"description":"Yggdrasil-only torrent tracker, operated by jeff",
|
||||
"url":false,
|
||||
"announce":"http://[200:1e2f:e608:eb3a:2bf:1e62:87ba:e2f7]/announce",
|
||||
"stats":"http://[200:1e2f:e608:eb3a:2bf:1e62:87ba:e2f7]/stats",
|
||||
"scrape":"http://[200:1e2f:e608:eb3a:2bf:1e62:87ba:e2f7]/scrape"
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue