-
Notifications
You must be signed in to change notification settings - Fork 0
/
netlify.toml
58 lines (54 loc) · 1.38 KB
/
netlify.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build]
publish = "public"
command = "zola build"
[build.environment]
ZOLA_VERSION = "0.19.1"
[[redirects]]
from = "/feed/feed.xml"
to = "/atom.xml"
status = 301
[[redirects]]
from = "/feed/feed.json"
to = "/atom.xml"
status = 301
[[headers]]
for = "/*"
[headers.values]
X-Frame-Options = "deny"
X-XSS-Protection = "1; mode=block"
X-Content-Type-Options = "nosniff"
Referrer-Policy = "no-referrer"
Strict-Transport-Security = '''
max-age=31536000;
includeSubDomains;
preload
'''
Content-Security-Policy = '''
default-src 'self' https://*.archaeoramblings.com;
style-src 'self' https://*.archaeoramblings.com 'unsafe-inline';
img-src 'self' https://*.archaeoramblings.com nonbot.org;
script-src 'self' https://*.archaeoramblings.com;
frame-src 'self' https://*.archaeoramblings.com;
connect-src 'self' https://*.archaeoramblings.com;
base-uri 'self' https://*.archaeoramblings.com;
form-action 'self' https://*.archaeoramblings.com
'''
Permissions-Policy = '''
accelerometer=(),
ambient-light-sensor=(),
autoplay=(),
camera=(),
encrypted-media=(),
fullscreen=(),
geolocation=(),
gyroscope=(),
magnetometer=(),
microphone=(),
midi=(),
payment=(),
picture-in-picture=(),
speaker=(),
usb=(),
vibrate=(),
vr=()
'''