Take a stab at Content Security Policy in meta tags
This commit is contained in:
parent
ca471da663
commit
e68e877119
|
@ -9,6 +9,21 @@
|
||||||
<meta property="og:title" content="Lexiconga Dictionary Builder">
|
<meta property="og:title" content="Lexiconga Dictionary Builder">
|
||||||
<meta property="og:description" content="Build lexicons for contructed languages or anything that you can think of!">
|
<meta property="og:description" content="Build lexicons for contructed languages or anything that you can think of!">
|
||||||
<meta property="og:image" content="http://lexicon.ga/images/logo.svg">
|
<meta property="og:image" content="http://lexicon.ga/images/logo.svg">
|
||||||
|
<meta property="Content-Security-Policy"
|
||||||
|
content="default-src 'self';
|
||||||
|
base-uri 'self';
|
||||||
|
sandbox 'self';
|
||||||
|
script-src 'self';
|
||||||
|
child-src 'none';
|
||||||
|
object-src 'none';
|
||||||
|
plugin-types 'none';
|
||||||
|
connect-src 'none';
|
||||||
|
font-src *;
|
||||||
|
img-src *;
|
||||||
|
media-src *;
|
||||||
|
style-src 'self';
|
||||||
|
worker-src 'self';
|
||||||
|
form-action 'none'">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="site"></div>
|
<div id="site"></div>
|
||||||
|
|
Loading…
Reference in New Issue