feat: Add docker image
Some checks failed
Build Docker / Build Image (push) Failing after 41s

This commit is contained in:
2024-01-11 18:22:20 +11:00
parent c60eb8c346
commit 202455fd2e
80 changed files with 154 additions and 0 deletions

6
templates/https.js Normal file
View File

@@ -0,0 +1,6 @@
if (location.protocol !== 'https:') {
location.replace(`https:${location.href.substring(location.protocol.length)}`);
}
else{
console.log("Already Https");
}