diff --git a/lua/cfc_http_restrictions/configs/cfc.lua b/lua/cfc_http_restrictions/configs/cfc.lua index ce2447f..0923a74 100644 --- a/lua/cfc_http_restrictions/configs/cfc.lua +++ b/lua/cfc_http_restrictions/configs/cfc.lua @@ -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 } } }