1<?php 2 3/** 4 * Options for the CSP Header Plugin 5 * 6 * @author Matthias Schulte <post@lupo49.de> 7 */ 8 9$conf['baseuriValue'] = '\'self\''; 10$conf['childsrcValue'] = ''; 11$conf['connectsrcValue'] = ''; 12$conf['defaultsrcValue'] = '\'self\''; 13$conf['fontsrcValue'] = ''; 14$conf['formactionValue'] = ''; 15$conf['frameancestorsValue'] = ''; 16$conf['framesrcValue'] = ''; 17$conf['imgsrcValue'] = ''; 18$conf['manifestsrcValue'] = ''; 19$conf['mediasrcValue'] = ''; 20$conf['navigatetoValue'] = ''; 21$conf['objectsrcValue'] = ''; 22$conf['plugintypesValue'] = ''; 23$conf['prefetchsrcValue'] = ''; 24$conf['reporturiValue'] = ''; 25$conf['sandboxValue'] = ''; 26$conf['scriptsrcValue'] = ''; 27$conf['scriptsrcattrValue'] = ''; 28$conf['scriptsrcelemValue'] = ''; 29$conf['stylesrcValue'] = ''; 30$conf['stylesrcattrValue'] = ''; 31$conf['stylesrcelemValue'] = ''; 32$conf['trustedtypesValue'] = ''; 33$conf['workersrcValue'] = ''; 34