- Move web files to www/ directory for easy copying to data folder - Remove Docker setup since user has existing Apache container - Add custom 404.html page - Update README with simple deployment instructions - Keep CGI script as optional bonus feature
26 lines
574 B
HTML
26 lines
574 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Error - Dustin's Fault</title>
|
|
<style>
|
|
body{font-family: monospace;background:#000;color:#0f0;margin:40px}
|
|
h1{color:#f00}
|
|
pre{color:#ff0}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>ERROR 404 - PAGE NOT FOUND</h1>
|
|
<p>This page doesn't exist. You know who to blame.</p>
|
|
<pre>
|
|
_____
|
|
| __ \
|
|
| | | | ___ _ _ _ __ ___
|
|
| | | |/ _ \ | | | '_ ` _ \
|
|
| |__| | __/ |_| | | | | | |
|
|
|_____/ \___|\__,_|_| |_| |_|
|
|
|
|
It's Dustin's fault. Obviously.
|
|
</pre>
|
|
<p><a href="/" style="color:#0ff">Go back to blaming Dustin properly</a></p>
|
|
</body>
|
|
</html> |