Last active
December 6, 2024 15:05
-
-
Save ryanburnette/9660d6ae626f6f0fd2ac1c1497e0f704 to your computer and use it in GitHub Desktop.
simple caddy 404 handler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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