Change CdnBaseUrl to CdnFullUrl (match implementation)

This PR fixes an issue with the default `appsettings.json` where `CdnBaseUrl` was specified instead of `CdnFullUrl`, which is what is used in the actual project. On self-hosted servers this leads to a failure to download updated files because of an incorrectly specified URL.
This commit is contained in:
Lily
2022-08-16 00:06:53 -05:00
committed by GitHub
parent 1bd37ffe70
commit b9c99fcdb5

View File

@@ -23,7 +23,7 @@
] ]
} }
}, },
"CdnBaseUrl": "https://<url or ip to your server>/cache/", "CdnFullUrl": "https://<url or ip to your server>/cache/",
"FailedAuthForTempBan": 5, "FailedAuthForTempBan": 5,
"TempBanDurationInMinutes": 30, "TempBanDurationInMinutes": 30,
"DiscordBotToken": "", "DiscordBotToken": "",