From 4dd25f8de8dcd77e472021fbec5b1a32eca90b73 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 15 Feb 2021 16:48:39 +0100 Subject: [PATCH] Set overwriteprotocol to HTTPS in Codespace Codespace is serving everything only as HTTPS. To keep the URLs valid, we also need to overwrite the protocol. (otherwise e.g. you can't develop the SAML app as the URLs are invalid) Signed-off-by: Lukas Reschke --- .devcontainer/codespace.config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/codespace.config.php b/.devcontainer/codespace.config.php index 2cf435582e..2818a760ed 100644 --- a/.devcontainer/codespace.config.php +++ b/.devcontainer/codespace.config.php @@ -14,4 +14,5 @@ $CONFIG = [ if($cloudEnvironmentId !== true) { $CONFIG['overwritehost'] = $cloudEnvironmentId . '-80.apps.codespaces.githubusercontent.com'; + $CONFIG['overwriteprotocol'] = 'https'; }