CSP: Allow more content types

This commit is contained in:
Literallie 2017-10-18 22:44:16 +02:00
parent 4238b9b3ef
commit 0cbdc852cb
No known key found for this signature in database
GPG key ID: 7BE463C902ED152C

View file

@ -18,9 +18,13 @@ module.exports = {
reportUri: '', reportUri: '',
directives: { directives: {
defaultSrc: ["'self'"], defaultSrc: ["'self'"],
scriptSrc: ["'self'"], scriptSrc: ["'self'", "'unsafe-eval'", "vimeo.com", "https://gist.github.com", "www.slideshare.net", "https://query.yahooapis.com", "https://*.disqus.com"],
styleSrc: ["'self'", "'unsafe-inline'"], imgSrc: ["*"],
fontSrc: ["'self'"], styleSrc: ["'self'", "'unsafe-inline'", "https://assets-cdn.github.com"],
fontSrc: ["'self'", "https://public.slidesharecdn.com"],
objectSrc: ["*"],
childSrc: ["*"],
connectSrc: ["'self'", "https://links.services.disqus.com", "wss://realtime.services.disqus.com"]
}, },
upgradeInsecureRequests: 'auto' upgradeInsecureRequests: 'auto'
}, },