profileShare

rasmusjy / roundtable

Read-only snapshot

No repository description.

main default branch 181 files Expires Sep 13, 2026, 9:06 AM
Caddyfile 521 bytes
1 # Reverse proxy in front of the Next.js app.
2 # `flush_interval -1` disables response buffering — essential for the long-lived
3 # SSE debate streams, which push events over several minutes.
4
5 {$SITE_ADDRESS} {
6 encode zstd gzip
7
8 reverse_proxy app:3000 {
9 flush_interval -1
10 transport http {
11 # Debates can stream for minutes; give generous read/write windows.
12 read_timeout 15m
13 write_timeout 15m
14 }
15 }
16
17 header {
18 X-Content-Type-Options nosniff
19 Referrer-Policy strict-origin-when-cross-origin
20 -Server
21 }
22 }
23