From cf78f1baea70661b48f028bff399818c9aa44fa4 Mon Sep 17 00:00:00 2001 From: Philipp Date: Sat, 21 Jan 2023 21:06:19 +0100 Subject: [PATCH] Fix missing values in sample files --- config/local-sample.config.php | 2 ++ mods/local.config.vagrant.php | 2 ++ 2 files changed, 4 insertions(+) diff --git a/config/local-sample.config.php b/config/local-sample.config.php index 9bf073df1d..2e9c02b421 100644 --- a/config/local-sample.config.php +++ b/config/local-sample.config.php @@ -36,9 +36,11 @@ return [ 'sitename' => 'Friendica Social Network', 'register_policy' => \Friendica\Module\Register::OPEN, 'register_text' => '', + 'hostname' => 'friendica.local', ], 'system' => [ 'default_timezone' => 'UTC', 'language' => 'en', + 'url' => 'https://friendica.local', ], ]; diff --git a/mods/local.config.vagrant.php b/mods/local.config.vagrant.php index da873116d8..379ddf185d 100644 --- a/mods/local.config.vagrant.php +++ b/mods/local.config.vagrant.php @@ -40,5 +40,7 @@ return [ 'language' => 'en', 'basepath' => '/vagrant', 'ssl_policy' => \Friendica\App\BaseURL::SSL_POLICY_SELFSIGN, + 'url' => 'https://192.168.56.10', + 'urlpath' => '', ], ];