xref: /dokuwiki/conf/local.php.dist (revision 0440ff150cefe9088c8aa126e646f901c69a7793)
1<?php
2/*
3  This is an example of how a local.php coul look like.
4  Simply copy the options you want to change from dokuwiki.php
5  to this file and change them
6 */
7
8
9$conf['title']       = 'My Wiki';        //what to show in the title
10
11$conf['useacl']      = 1;                //Use Access Control Lists to restrict access?
12$conf['superuser']   = 'joe';
13
14/* The following options are usefull, if you use a MySQL
15 * database as autentication backend. Have a look into
16 * mysql.conf.php too and adjust the options to match
17 * your database installation.
18 */
19$conf['authtype']   = 'mysql';
20require_once ("mysql.conf.php");
21
22
23