1<?php 2/* 3 * $Id: default.php 18 2017-06-19 15:22:35Z denis $ 4 * @author DenisVS <deniswebcomm@gmail.com> 5 * source plugin, default configuration settings 6 * @link https://www.dokuwiki.org/plugin:src 7 * @based on Source Plugin by Chris Smith <chris@jalakai.co.uk> 8 */ 9 10// location is prepended to all file names, restricting the filespace exposed to the plugin 11$conf['location'] = ''; 12 13// if allow array contains any elements, ONLY files with the extensions listed will be allowed 14$conf['allow'] = ''; 15 16// if the $allow array is empty, any file with an extension listed in deny array will be denied 17//$conf['deny'] ='php|asp|pl'; 18 19// rules, complex allow/deny rules, refer plugin documentation 20$conf['rules'] = ''; 21