caddy-webhook
caddy-webhook copied to clipboard
Caddy v2 module for serving a webhook.
I have a caddy server running with my config defined in a JSON file instead of a caddy file. Whenever I hit my webhook endpoint I get the following error:...
Going to my webhook route now responds with a 400, but it should probably return a 200
Caddyfile ``` :80 { encode zstd gzip log { output file /var/log/access.log } root * /data/blog file_server handle_errors { @404 { expression {http.error.status_code} == 404 } handle @404 { rewrite...