]> git.pld-linux.org Git - packages/dokuwiki.git/blob - dokuwiki-config.patch
Up to 20230404a
[packages/dokuwiki.git] / dokuwiki-config.patch
1 --- dokuwiki-2020-07-29a/conf/dokuwiki.php      2023-03-27 11:52:04.144883301 +0300
2 +++ dokuwiki-2020-07-29a/conf/dokuwiki.php      2023-03-27 12:03:50.328816007 +0300
3 @@ -13,14 +13,16 @@
4  
5  
6  /* Basic Settings */
7 -$conf['title']       = 'DokuWiki';        //what to show in the title
8 +$conf['title']       = 'PLD Linux DokuWiki'; //what to show in the title
9  $conf['start']       = 'start';           //name of start page
10  $conf['lang']        = 'en';              //your language
11  $conf['template']    = 'dokuwiki';         //see lib/tpl directory
12  $conf['tagline']     = '';                //tagline in header (if template supports it)
13  $conf['sidebar']     = 'sidebar';         //name of sidebar in root namespace (if template supports it)
14 -$conf['license']     = 'cc-by-nc-sa';     //see conf/license.php
15 -$conf['savedir']     = './data';          //where to store all the files
16 +$conf['license']     = 'publicdomain';    //see conf/license.php
17 +$conf['savedir']     = '/var/lib/dokuwiki';  //where to store all the files
18 +$conf['cachedir']    = '/var/cache/dokuwiki';  //where cache files are stored
19 +$conf['logdir']      = '/var/log/php/dokuwiki';
20  $conf['basedir']     = '';                //absolute dir from serveroot - blank for autodetection
21  $conf['baseurl']     = '';                //URL to server including protocol - blank for autodetect
22  $conf['cookiedir']   = '';                //path to use in cookies - blank for basedir
23 @@ -140,7 +142,7 @@
24  $conf['rss_show_deleted'] = 1;           //Show deleted items 0|1
25  
26  /* Advanced Settings */
27 -$conf['updatecheck'] = 1;                //automatically check for new releases?
28 +$conf['updatecheck'] = 0;                //automatically check for new releases?
29  $conf['userewrite']  = 0;                //this makes nice URLs: 0: off 1: .htaccess 2: internal
30  $conf['useslash']    = 0;                //use slash instead of colon? only when rewrite is on
31  $conf['sepchar']     = '_';              //word separator character in page names; may be a
This page took 0.048604 seconds and 3 git commands to generate.