diff options
author | Robin Windey <ro.windey@gmail.com> | 2023-03-11 12:18:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-31 13:53:03 +0000 |
commit | 16c14c059d03069f7e19e100b60c550e8ac54a38 (patch) | |
tree | da7019badd7e19b25c312488e9fa22eb30e3ca8b /.devcontainer/codespace.config.php | |
parent | 81df7d636e06d1cf5b4aa6ee8e7be8d8fe73c3c9 (diff) | |
download | nextcloud-server-16c14c059d03069f7e19e100b60c550e8ac54a38.tar.gz nextcloud-server-16c14c059d03069f7e19e100b60c550e8ac54a38.zip |
Minor improvements for devcontainer
* Autostart apache2
* Apply occ installation on start
* Autostart Xdebug on request
* Add DevContainer Xdebug profile
Signed-off-by: GitHub <noreply@github.com>
Diffstat (limited to '.devcontainer/codespace.config.php')
-rw-r--r-- | .devcontainer/codespace.config.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.devcontainer/codespace.config.php b/.devcontainer/codespace.config.php index 5d883c3c9df..c191698c256 100644 --- a/.devcontainer/codespace.config.php +++ b/.devcontainer/codespace.config.php @@ -16,4 +16,5 @@ $CONFIG = [ if(is_string($codespaceName) && !empty($codespaceName) && is_string($codespaceDomain) && !empty($codespaceDomain)) { $CONFIG['overwritehost'] = $codespaceName . '-80.' . $codespaceDomain; $CONFIG['overwriteprotocol'] = 'https'; + $CONFIG['trusted_domains'] = [ $CONFIG['overwritehost'] ]; } |