Remove old config parts

- config.hostname
- system.urlpath
- system.ssl_policy
This commit is contained in:
Philipp 2023-02-18 20:28:01 +01:00
parent 45749c14be
commit 96e12be26b
No known key found for this signature in database
GPG key ID: 24A7501396EB5432
6 changed files with 14 additions and 9 deletions

View file

@ -35,7 +35,6 @@ return [
// ****************************************************************
'config' => [
'hostname' => 'friendica.local',
'admin_email' => 'admin@friendica.local',
'sitename' => 'Friendica Social Network',
'register_policy' => \Friendica\Module\Register::OPEN,
@ -44,9 +43,7 @@ return [
'system' => [
'default_timezone' => 'UTC',
'language' => 'en',
'ssl_policy' => \Friendica\App\BaseURL::SSL_POLICY_SELFSIGN,
'url' => 'https://friendica.local',
'urlpath' => '',
// don't start unexpected worker.php processes during test!
'worker_dont_fork' => true,
],

View file

@ -29,7 +29,6 @@ return [
// ****************************************************************
'config' => [
'hostname' => '192.168.56.10',
'admin_email' => 'admin@friendica.local',
'sitename' => 'Friendica Social Network',
'register_policy' => \Friendica\Module\Register::OPEN,
@ -39,8 +38,6 @@ return [
'default_timezone' => 'UTC',
'language' => 'en',
'basepath' => '/vagrant',
'ssl_policy' => \Friendica\App\BaseURL::SSL_POLICY_SELFSIGN,
'url' => 'https://192.168.56.10',
'urlpath' => '',
],
];