fix: Add routes for handshake redirect scripts
All checks were successful
Build Docker / Build Image (push) Successful in 30s

This commit is contained in:
2023-11-02 21:13:59 +11:00
parent 0b6ba921ce
commit 1855e18315
7 changed files with 7 additions and 59 deletions

View File

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