From d256e235a10119052b2f84c5a688b0a92ecf9527 Mon Sep 17 00:00:00 2001 From: sascha Date: Mon, 6 Apr 2026 21:37:28 +0200 Subject: [PATCH] caddy: add sysctls for UDP buffer (QUIC/HTTP3 fix) - net.core.rmem_max=67108864 (64MB) - net.core.wmem_max=67108864 (64MB) - fixes Caddy QUIC buffer warning (was 208KB, needed 7MB+) --- compose.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 2561dbd..482806a 100644 --- a/compose.yaml +++ b/compose.yaml @@ -8,17 +8,21 @@ services: image: caddy container_name: caddy restart: unless-stopped + sysctls: + - net.core.rmem_max=67108864 + - net.core.wmem_max=67108864 extra_hosts: - "host.docker.internal:host-gateway" networks: - proxy_network + expose: + - 2019 ports: - 80:80 - 443:443/tcp - 443:443/udp - 8448:8448 - expose: - - 2019 + - 10.200.200.254:2019:2019 volumes: - /app-config/caddy/data:/data - /app-config/caddy/Caddyfile:/etc/caddy/Caddyfile