Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2021-02-15 18:48:39 +0300
committerGitHub <noreply@github.com>2021-02-15 18:48:39 +0300
commit4dd25f8de8dcd77e472021fbec5b1a32eca90b73 (patch)
tree4d1bc776463d480920a6937e54ba02d4170e5e4a /.devcontainer
parent9fd72b0d3a4ebfad2291a18aefc51e999fbb0744 (diff)
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 <lukas@statuscode.ch>
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/codespace.config.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/.devcontainer/codespace.config.php b/.devcontainer/codespace.config.php
index 2cf435582ed..2818a760edb 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';
}