refactor: simplify deployment for existing Apache Docker container

- 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
This commit is contained in:
2026-02-25 12:02:55 -05:00
parent feaf614dd5
commit 0d0963198e
4 changed files with 147 additions and 46 deletions

26
www/404.html Normal file
View File

@@ -0,0 +1,26 @@
<!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>