-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.temp.php
More file actions
44 lines (43 loc) · 1.21 KB
/
config.temp.php
File metadata and controls
44 lines (43 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
return [
'debug' => true,
'templatedir' => './sites',
'cachedir' => './cache',
'mirrorpath' => '/var/www/lainos',
'updatelog' => '/var/www/lainos/update-repo.log',
//pages nav configuration
'pages' => [
'home' => [
'template' => 'app.php.twig',
],
'about' => [
'template' => 'aboutme.html.twig',
],
/*'blog' => [
'template' => 'blog.php.twig',
],*/
'LainOS' => [
'template' => 'repositories.php.twig',
],
/*'webring' => [
'template' => 'webring.php.twig',
],
'serverstats' => [
'template' => 'serverstats.php.twig',
],*/
'Jabber Server' => [
'template' => 'xmpp.twig',
],
'account' => [
'template' => null, // handled by account.php
],
],
'lldap' => [
'url' => 'http',
'ldap_url' => 'ldap',
'base_dn' => 'dc=lain,dc=rocks',
'admin_dn' => 'uid=admin,ou=people,dc=lain,dc=rocks',
'admin_pw' => '',
'default_groups' => ['mail_users', 'nextcloud_users', 'forgejo_users'],
],
];