]> git.pld-linux.org Git - packages/dokuwiki.git/blame - dokuwiki-config.patch
Override logdir for system path
[packages/dokuwiki.git] / dokuwiki-config.patch
CommitLineData
f350088e
ER
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
76b86929 3@@ -13,14 +13,16 @@
f350088e
ER
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
566f6bd4
ER
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)
f6b36384 14-$conf['license'] = 'cc-by-nc-sa'; //see conf/license.php
566f6bd4 15-$conf['savedir'] = './data'; //where to store all the files
f6b36384 16+$conf['license'] = 'publicdomain'; //see conf/license.php
566f6bd4 17+$conf['savedir'] = '/var/lib/dokuwiki'; //where to store all the files
efe25e4d 18+$conf['cachedir'] = '/var/cache/dokuwiki'; //where cache files are stored
76b86929 19+$conf['logdir'] = '/var/log/php/dokuwiki';
566f6bd4
ER
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
76b86929 23@@ -140,7 +142,7 @@
f350088e 24 $conf['rss_show_deleted'] = 1; //Show deleted items 0|1
eb3c9a20
ER
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.455811 seconds and 4 git commands to generate.