forked from
juprodh.bsky.social/lichen.wiki
馃尶 Collaborative wiki on ATProto
1lichen.wiki {
2 tls {
3 dns cloudflare {env.CLOUDFLARE_API_TOKEN}
4 }
5
6 encode gzip
7
8 # Immutable blob cache headers (PDS-proxied blobs)
9 handle /blob/* {
10 header Cache-Control "public, max-age=31536000, immutable"
11 reverse_proxy localhost:3000
12 }
13
14 # Static assets with long cache
15 handle /public/* {
16 header Cache-Control "public, max-age=86400"
17 reverse_proxy localhost:3000
18 }
19
20 # Everything else
21 reverse_proxy localhost:3000
22}
23
24stats.lichen.wiki {
25 tls {
26 dns cloudflare {env.CLOUDFLARE_API_TOKEN}
27 }
28
29 encode gzip
30 reverse_proxy localhost:8081
31}