diff options
Diffstat (limited to 'conf/local.php.dist')
-rw-r--r-- | conf/local.php.dist | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/conf/local.php.dist b/conf/local.php.dist index bcbb19e63..53d7cc720 100644 --- a/conf/local.php.dist +++ b/conf/local.php.dist @@ -10,3 +10,13 @@ $conf['title'] = 'My Wiki'; //what to show in the title $conf['useacl'] = 1; //Use Access Control Lists to restrict access? $conf['superuser'] = 'joe'; + +/* The following options are usefull, if you use a MySQL + * database as autentication backend. Have a look into + * mysql.conf.php too and adjust the options to match + * your database installation. + */ +$conf['authtype'] = 'mysql'; +require_once ("mysql.conf.php"); + + |