12345678910111213141516171819202122232425 |
- <?php
- /**
- * This is an example of how a local.php could look like.
- * Simply copy the options you want to change from dokuwiki.php
- * to this file and change them.
- *
- * When using the installer, a correct local.php file be generated for
- * you automatically.
- */
-
-
- $conf['title'] = '{{ domain }} Wiki';
- $conf['lang'] = 'en';
- $conf['license'] = 'cc-by-sa';
-
- $conf['savedir'] = '/data/dokuwiki';
-
- $conf['useacl'] = 1;
- $conf['superuser'] = '@admin';
- $conf['passcrypt'] = 'bcrypt';
-
- $conf['disableactions'] = 'register';
-
- $conf['userewrite'] = 1;
- $conf['useslash'] = 1;
|