mirror of
https://github.com/friendica/friendica
synced 2024-11-15 05:33:53 +00:00
25 lines
349 B
PHP
25 lines
349 B
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
/**
|
|
* A test local ini file
|
|
*/
|
|
|
|
return <<<INI
|
|
|
|
[database]
|
|
hostname = testhost
|
|
username = testuser
|
|
password = testpw
|
|
database = testdb
|
|
|
|
[system]
|
|
theme = changed
|
|
newKey = newValue
|
|
|
|
[config]
|
|
admin_email = admin@overwritten.local
|
|
INI;
|