fix default config to be very permissive with CSP headers

pull/1/head
ansuz 8 years ago
parent e207895ffc
commit e8fbbf9984

@ -24,9 +24,17 @@ module.exports = {
"default-src 'none'", "default-src 'none'",
"style-src 'unsafe-inline' 'self'", "style-src 'unsafe-inline' 'self'",
"script-src 'self'", "script-src 'self'",
"child-src 'self' cryptpad.fr *.cryptpad.fr",
"font-src 'self'", "font-src 'self'",
"connect-src 'self' wss://cryptpad.fr",
/* child-src is used to restrict iframes to a set of allowed domains.
* connect-src is used to restrict what domains can connect to the websocket.
*
* it is recommended that you configure these fields to match the
* domain which will serve your cryptpad instance.
*/
"connect-src 'self' ws://*",
"child-src 'self' *",
// data: is used by codemirror // data: is used by codemirror
"img-src 'self' data:", "img-src 'self' data:",
].join('; '), ].join('; '),
@ -39,14 +47,11 @@ module.exports = {
"script-src 'self' 'unsafe-eval' 'unsafe-inline'", "script-src 'self' 'unsafe-eval' 'unsafe-inline'",
"font-src 'self'", "font-src 'self'",
/* child-src is used to restrict iframes to a set of allowed domains. /* See above under 'contentSecurity' as to how these values should be
* connect-src is used to restrict what domains can connect to the websocket. * configured for best effect.
*
* it is recommended that you configure these fields to match the
* domain which will serve your cryptpad instance.
*/ */
// "child-src 'self' cryptpad.fr *.cryptpad.fr", "child-src 'self' *",
// "connect-src 'self' wss://cryptpad.fr", "connect-src 'self' ws://*",
// (insecure remote) images are included by users of the wysiwyg who embed photos in their pads // (insecure remote) images are included by users of the wysiwyg who embed photos in their pads
"img-src *", "img-src *",

Loading…
Cancel
Save