add more domains starfall uses in docs

This commit is contained in:
Pierce 2023-08-11 23:41:27 -04:00
parent b71c24943c
commit 5ac8e29b31
No known key found for this signature in database
GPG Key ID: EC79465B0E865E47

View File

@ -1,46 +1,52 @@
AddCSLuaFile()
return {
version="1", -- this field allows backwards compatibility if the config structure is ever updated
version = "1", -- this field allows backwards compatibility if the config structure is ever updated
wrapHTMLPanels = true,
addresses = {
["nanny.cfcservers.org"] = {allowed=true, noisy=true, permanent=true},
["paste.cfcservers.org"] = {allowed=true, noisy=true, permanent=true},
["cdn.cfcservers.org"] = {allowed=true, noisy=true, permanent=true},
["nanny.cfcservers.org"] = { allowed = true, noisy = true, permanent = true },
["paste.cfcservers.org"] = { allowed = true, noisy = true, permanent = true },
["cdn.cfcservers.org"] = { allowed = true, noisy = true, permanent = true },
-- dino game has this in the html
["www.html5rocks.com"] = {allowed=true, permanent=true},
["www.html5rocks.com"] = { allowed = true, permanent = true },
-- domains starfall docs have
["npms.io"] = {allowed=true},
["fb.me"] = {allowed=true},
["reactjs.org"] = {allowed=true},
["www.w3.org"] = {allowed=true},
["npms.io"] = { allowed = true },
["fb.me"] = { allowed = true },
["reactjs.org"] = { allowed = true },
["www.w3.org"] = { allowed = true },
["www.cplusplus.com"] = { allowed = true },
["wiki.garrysmod.com"] = { allowed = true },
["en.wikipedia.org"] = { allowed = true },
["mydomain.com"] = { allowed = true },
["developer.mozilla.org"] = { allowed = true },
["*.cfcservers.org"] = {allowed=true, permanent=true},
["cfcservers.org"] = {allowed=true, permanent=true},
["google.com"] = {allowed=true, permanent=true},
["www.google.com"] = {allowed=true, permanent=true},
["*.cfcservers.org"] = { allowed = true, permanent = true },
["cfcservers.org"] = { allowed = true, permanent = true },
["api.mixpanel.com"] = {allowed=true},
["google.com"] = { allowed = true, permanent = true },
["www.google.com"] = { allowed = true, permanent = true },
["api.mixpanel.com"] = { allowed = true },
-- fox pictures
["fox.pics"] = {allowed=true},
["*.fox.pics"] = {allowed=true},
["fox.pics"] = { allowed = true },
["*.fox.pics"] = { allowed = true },
-- media player
["samuelmaddock.github.io"] = {allowed=true},
["samuelmaddock.github.io"] = { allowed = true },
-- Express
["gmod.express"] = {allowed=true, permanent=true},
["gmod.pages.dev"] = {allowed=true, permanent=true},
["gmod.express"] = { allowed = true, permanent = true },
["gmod.pages.dev"] = { allowed = true, permanent = true },
-- Steam API, mapvote uses this.
["api.steampowered.com"] = {allowed=true, permanent=true},
["steamuserimages-a.akamaihd.net"] = {allowed=true, permanent=true}
["api.steampowered.com"] = { allowed = true, permanent = true },
["steamuserimages-a.akamaihd.net"] = { allowed = true, permanent = true }
}
}