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

config.php « src « server - github.com/nextcloud/lookup-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9cba3463ac32ca20ba3c3a07a32626f6fc917b9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

require __DIR__ . '/../config/config.php';

return [
	'settings' => [
		'displayErrorDetails' => true,
		'addContentLengthHeader' => true,
		'db' => [
			'host' => $CONFIG['DB']['host'],
			'user' => $CONFIG['DB']['user'],
			'pass' => $CONFIG['DB']['pass'],
			'dbname' => $CONFIG['DB']['db'],
		],
		'host' => $CONFIG['PUBLIC_URL'],
		'emailfrom' => $CONFIG['EMAIL_SENDER'],
	]
];