Removed unused 404 handler

This commit is contained in:
Koray Yanik 2022-03-24 00:11:07 +00:00
parent 30a865deea
commit 2d8c9989ae
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
#!/bin/bash
body="<html>\n"
body+="<head><title>Not found</title></head>\n"
body+="<body>The requested resource $2 was not found</body>\n"
body+="</html>\n"
cat <<EOF
$($BASHSERV_DIR/header.sh -t "text/html" -l $(echo -ne "$body" | wc -c) 404)
$(echo -ne $body)
EOF