rnhmjoj
5498e1de87
* use a template based on the Privoxy one * print a stack of the exceptions * link the documentation and issue tracker
108 lines
2.4 KiB
HTML
108 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta encoding="utf-8">
|
|
<style>
|
|
* { box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: Helvetica, Arial, sans-serif;
|
|
color: black;
|
|
background: white;
|
|
margin: 1.2em;
|
|
}
|
|
|
|
article, footer {
|
|
border: 1px solid black;
|
|
width: 100%;
|
|
margin-top: 0.6em;
|
|
padding: 1em;
|
|
}
|
|
|
|
header {
|
|
height: 7em;
|
|
display: flex;
|
|
margin: 0;
|
|
}
|
|
|
|
header div {
|
|
display: flex;
|
|
align-items: center;
|
|
border: 1px solid black;
|
|
margin: 0 0.3rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
header div:first-child { margin-left: 0; }
|
|
header div:last-child { margin-right: 0; }
|
|
|
|
#status {
|
|
background: red;
|
|
color: white;
|
|
font-size: 300%;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
#title {
|
|
background: #ddd;
|
|
width: 100%;
|
|
}
|
|
|
|
#message { background: #fdd; }
|
|
article { background: #eee; }
|
|
footer { background: #ccf; }
|
|
|
|
h1, h2, h3 { margin: 0; }
|
|
h1 { font-size: 140% }
|
|
h2 { font-size: 120% }
|
|
h3 { font-size: 110% }
|
|
|
|
a { text-decoration: none; }
|
|
a:link { color: #00d; }
|
|
a:visited { color: #309; }
|
|
a:active { color: #33f; }
|
|
</style>
|
|
<title>$server: Error $code</title>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<div id="status">$code</div>
|
|
|
|
<div id="title">
|
|
<h1>
|
|
This is <a href="https://maxwell.ydns.eu/git/rnhmjoj/privoxy-tls">$server</a>
|
|
on $hostname ($address), port $port
|
|
</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<article id="message">
|
|
<h2>$message:</h2>
|
|
<p>
|
|
Your request for <b><a href="$url">$url</a></b> could not be fulfilled
|
|
because an error occured.
|
|
</p>
|
|
</article>
|
|
|
|
<article>
|
|
<h2>More information:</h2>
|
|
$explain
|
|
<p>Error generated on $now.</p>
|
|
</article>
|
|
|
|
<footer>
|
|
<h2>Support:</h2>
|
|
<p>
|
|
Please have a look at the
|
|
<a href="https://maxwell.ydns.eu/git/rnhmjoj/privoxy-tls">documentation</a>
|
|
to learn how to configure Privoxy TLS correctly.
|
|
</p>
|
|
<p>
|
|
If you are encountering a problem consider opening an
|
|
<a href="https://maxwell.ydns.eu/git/rnhmjoj/privoxy-tls/issues">issue</a>.
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|