Skip to content

Instantly share code, notes, and snippets.

@ryanburnette
Last active December 6, 2024 15:05
Show Gist options
  • Save ryanburnette/9660d6ae626f6f0fd2ac1c1497e0f704 to your computer and use it in GitHub Desktop.
Save ryanburnette/9660d6ae626f6f0fd2ac1c1497e0f704 to your computer and use it in GitHub Desktop.
simple caddy 404 handler
(404-handler) {
handle_errors {
@404 {
expression {http.error.status_code} == 404
}
handle @404 {
header Content-Type text/html
respond "<!DOCTYPE html><html lang='en'><head><title>404 Not Found</title></head><body><h1>404 Not Found</h1><p>The page you are looking for does not exist.</p></body></html>" 404
}
}
}
example.com {
root * /var/www/html
file_server
import 404-handler
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment