Added new cache_domains file

Added new cache_domains.json file to allow machine readable metadata to
be added about the CDN's configured here. Initialised with skeleton for
all current files

Updated README.md to explain the structure.
This commit is contained in:
VibroAxe
2018-01-08 11:54:50 +00:00
parent 1a22714731
commit 1db98f3f56
2 changed files with 124 additions and 0 deletions

97
cache_domains.json Normal file
View File

@ -0,0 +1,97 @@
{
"cache_domains": [
{
"name": "apple",
"description": "CDN for apple",
"domain_files": ["apple.txt"]
},
{
"name": "arenanet",
"description": "CDN for guild wars, HoT",
"domain_files": ["arenanet.txt"]
},
{
"name": "blizzard",
"description": "CDN for blizzard/battle.net",
"domain_files": ["blizzard.txt"]
},
{
"name": "frontier",
"description": "CDN for frontier games",
"domain_files": ["frontier.txt"]
},
{
"name": "gog",
"description": "CDN for good old games downloader",
"domain_files": ["gog.txt"]
},
{
"name": "hirez",
"description": "CDN for hirez",
"domain_files": ["hirez.txt"]
},
{
"name": "minecraft",
"description": "CDN for minecraft client and updater",
"domain_files": ["minecraft.txt"]
},
{
"name": "nexusmods",
"description": "Nexus mods / skyrim content",
"domain_files": ["nexusmods.txt"]
},
{
"name": "nintendo",
"description": "CDN for nintendo (swtich)",
"domain_files": ["nintendo.txt"]
},
{
"name": "origin",
"description": "CDN for origin",
"notes": "Should be enabled for HTTP traffic only or with a HTTPS proxy else origin client download fails",
"mixed_content": true,
"domain_files": ["origin.txt"]
},
{
"name": "riot",
"description": "CDN for riot games",
"domain_files": ["riot.txt"]
},
{
"name": "rockstar",
"description": "CDN for rockstar games",
"domain_files": ["rockstar.txt"]
},
{
"name": "sony",
"description": "CDN for sony / playstation",
"domain_files": ["sony.txt"]
},
{
"name": "steam",
"description": "CDN for steam platform",
"domain_files": ["steam.txt"]
},
{
"name": "uplay",
"description": "CDN for uplay downloader",
"domain_files": ["uplay.txt"]
},
{
"name": "wargaming",
"description": "CDN for wargaming.net",
"domain_files": ["wargaming.net.txt"]
},
{
"name": "wsus",
"description": "CDN for windows updates",
"domain_files": ["windowsupdates.txt"]
},
{
"name": "xboxlive",
"description": "CDN for xboxlive",
"domain_files": ["xboxlive.txt"]
}
]
}