-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCaddyfile
53 lines (41 loc) · 948 Bytes
/
Caddyfile
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
{$APP_DOMAIN} {
reverse_proxy web:3000
tls {$APP_EMAIL} {
dns cloudflare {$CF_API_TOKEN}
resolvers 1.1.1.1
}
encode zstd gzip
header {
# disable FLoC tracking
Permissions-Policy interest-cohort=()
# enable HSTS
Strict-Transport-Security max-age=31536000;
# disable clients from sniffing the media type
X-Content-Type-Options nosniff
# clickjacking protection
X-Frame-Options DENY
# keep referrer data off of HTTP connections
Referrer-Policy no-referrer-when-downgrade
Content-Security-Policy "default-src 'self'; img-src * 'unsafe-inline'; style-src * 'unsafe-inline'"
X-XSS-Protection "1; mode=block"
}
@caddymetrics {
host {$APP_DOMAIN}
path /_caddy/metrics
}
metrics @caddymetrics {
disable_openmetrics
}
@appmetrics {
host {$APP_DOMAIN}
path /_app/metrics
}
handle @appmetrics {
rewrite * /metrics
reverse_proxy ssh:9222
}
}
:443 {
reverse_proxy web:3000
encode zstd gzip
}