# Caddyfile for docs { # Global options auto_https off # Disable automatic HTTPS local_certs # Use local certificates for development } {$DOMAIN_NAME:localhost} { # Enable compression encode zstd gzip # Proxy all requests to the docs service handle { reverse_proxy docs_app:3000 } # Security headers header { X-Content-Type-Options nosniff X-Frame-Options DENY Referrer-Policy strict-origin-when-cross-origin } }