diff options
Diffstat (limited to 'debian/patches/0009-data-directory.patch')
-rw-r--r-- | debian/patches/0009-data-directory.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/patches/0009-data-directory.patch b/debian/patches/0009-data-directory.patch new file mode 100644 index 0000000..94cf9d5 --- /dev/null +++ b/debian/patches/0009-data-directory.patch @@ -0,0 +1,15 @@ +Author: Tanguy Ortolo <tanguy+debian@ortolo.eu> +Description: change the data directory. + +diff -Naurp dokuwiki.orig/conf/dokuwiki.php dokuwiki/conf/dokuwiki.php +--- dokuwiki.orig/conf/dokuwiki.php ++++ dokuwiki/conf/dokuwiki.php +@@ -20,7 +20,7 @@ $conf['template'] = 'dokuwiki'; + $conf['tagline'] = ''; //tagline in header (if template supports it) + $conf['sidebar'] = 'sidebar'; //name of sidebar in root namespace (if template supports it) + $conf['license'] = 'cc-by-nc-sa'; //see conf/license.php +-$conf['savedir'] = './data'; //where to store all the files ++$conf['savedir'] = '/var/lib/dokuwiki/data'; //where to store all the files + $conf['basedir'] = ''; //absolute dir from serveroot - blank for autodetection + $conf['baseurl'] = ''; //URL to server including protocol - blank for autodetect + $conf['cookiedir'] = ''; //path to use in cookies - blank for basedir |