1<?php 2/* 3 * source plugin, default configuration settings 4 * 5 * @author Christopher Smith <chris@jalakai.co.uk> 6 */ 7 8// location is prepended to all file names, restricting the filespace exposed to the plugin 9$conf['location'] = ''; 10 11// if allow array contains any elements, ONLY files with the extensions listed will be allowed 12$conf['allow'] = ''; 13 14// if the $allow array is empty, any file with an extension listed in deny array will be denied 15$conf['deny'] ='php|asp|pl'; 16 17// rules, complex allow/deny rules, refer plugin documentation 18$conf['rules'] = ''; 19