Skip to content

Commit d6b7261

Browse files
committed
Revert to hardcoded https
It should be safe to switch this back. I was testing with http at some point and it made sense, but now it will probably cause issues in ceratain cases.
1 parent b8c423a commit d6b7261

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/launch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
if($path !== '/') {
2626
$path .= '/';
2727
}
28-
$location = 'http://' . $_SERVER['HTTP_HOST'] . $path . $location; # TODO: Can we let the https rewrite handle this?
28+
$location = 'https://' . $_SERVER['HTTP_HOST'] . $path . $location;
2929
header("Location: {$location}");
3030
?>
3131
<html>

0 commit comments

Comments
 (0)