How can I set more than one page to the meta-tag http-equiv of the content security policy? I have this :
<meta http-equiv="Content-Security-Policy" content="default-src 'self'
http://foo.com; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' 'unsafe-eval'">
But I also want https://foo2.com and http://www.foo3.com to be in there. I try adding a new meta line but it is not working.
Hope you can help me!
After few days searching and looking I found this and it seems to be working:
<meta http-equiv="Content-Security-Policy" content="default-src *; style-src 'self' 'unsafe-inline'; script-src
'self' 'unsafe-inline' 'unsafe-eval' *.foo.com *.foo2.com *.foo3.com">