The HTTP handler no longer works; browsers complain connection reset.
I've investigated, but without success.
This commit is contained in:
parent
e1b3addcdd
commit
a4bcf3c378
7 changed files with 130 additions and 5 deletions
27
resources/httpd/error/404.html
Normal file
27
resources/httpd/error/404.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>404: File not found</title>
|
||||
<style>
|
||||
a {
|
||||
background-color: black;
|
||||
color: greenyellow;
|
||||
}
|
||||
body {
|
||||
padding: 2em 20%;
|
||||
background-color: black;
|
||||
color: green;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>404: I'm sorry, Dave, I can't do that</h1>
|
||||
|
||||
<p>The file you requested was not found on this server.</p>
|
||||
|
||||
<footer>
|
||||
<a href="https://git.journeyman.cc/simon/gild">The Generic Internet Listener Daemon</a>, Copyright: (c) Simon Brooke 1997
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
27
resources/httpd/error/501.html
Normal file
27
resources/httpd/error/501.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>501: Not implemented</title>
|
||||
<style>
|
||||
a {
|
||||
background-color: black;
|
||||
color: greenyellow;
|
||||
}
|
||||
body {
|
||||
padding: 2em 20%;
|
||||
background-color: black;
|
||||
color: green;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>501: I'm sorry, Dave, I can't do that</h1>
|
||||
|
||||
<p>The GILD HTTP handler is very simple, and can only handle HEAD and GET requests.</p>
|
||||
|
||||
<footer>
|
||||
<a href="https://git.journeyman.cc/simon/gild">The Generic Internet Listener Daemon</a>, Copyright: (c) Simon Brooke 1997
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue