Skip to content

Commit bc81a3a

Browse files
committed
chore(pages): add failover page for Traefik
To be deploy soonish
1 parent ab49391 commit bc81a3a

File tree

4 files changed

+76
-4
lines changed

4 files changed

+76
-4
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta name="viewport" content="width=device-width, initial-scale=1">
5+
<meta charset="UTF-8">
6+
<title>Something gone horribly wrong- Andrei Jiroh's Homelab Infrastructure</title>
7+
<meta name="description" content="Something went horribly wrong on our side, hence being redirected here. This could be due to high load, maintenance, or other issues.">
8+
<!-- stylesheets -->
9+
<link rel="stylesheet" href="./style.css">
10+
</head>
11+
<body>
12+
<div class="centered">
13+
<svg
14+
xmlns="http://www.w3.org/2000/svg"
15+
height="96px"
16+
viewBox="0 -960 960 960" width="96px"
17+
class="offline-icon"
18+
title="offline-icon"
19+
>
20+
<path d="M818-56 703-171H248q-88 0-148-59T40-377q0-80 50.5-134T217-577q2-14 6.5-31.5T236-640L70-806l42-42L861-99l-43 43ZM248-231h397L285-591q-11 15-14.5 34t-3.5 37h-19q-62 0-105 39.5t-43 101q0 61.5 43 105T248-231Zm216-181Zm390 210-47-47q25-17 39-38t14-50q0-43-31-73.5T755-441h-67v-81q0-88-61-147.5T478.47-729q-28.47 0-60.97 9T358-691l-42-42q36-29 77.5-42.5T478-789q111 0 190.5 79T748-520v21q72-1 122 45t50 117q0 35-16.5 73.5T854-202ZM583-470Z"/>
21+
</svg>
22+
<h1>Aw, dang it!</h1>
23+
<p>Something went horribly wrong on our side, hence being redirected here. This could be due to high load, maintenance, or other issues.</p>
24+
<p>Please try again in a few minutes. If this is keep happening, <a href="https://support.recaptime.dev">contact support</a>.</p>
25+
<p>Served via <a href="https://gitlab.com/recaptime-dev/proxyparty-caddy">GitLab Pages</a>.</p>
26+
</div>
27+
</body>
28+
</html>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User-Agent: *
2+
Disallow: /
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
body {
2+
background-color: #343434;
3+
margin: 0;
4+
padding: 0;
5+
font: 11pt monospace;
6+
}
7+
8+
div {
9+
display: flex;
10+
justify-content: center;
11+
align-items: center;
12+
width: 100vw;
13+
height: 100vh;
14+
flex-direction: column;
15+
}
16+
17+
h1,code,p {
18+
color: white;
19+
text-align: center;
20+
}
21+
22+
code {
23+
display: flex;
24+
gap: 20px;
25+
background-color: #1E1E1E;
26+
color: #00FF00;
27+
padding: 0.5rem;
28+
}
29+
30+
.freeze {
31+
color: #009485;
32+
}
33+
34+
.offline-icon {
35+
color: #EA3323;
36+
fill: #EA3323;
37+
}

pages/parking.lorebooks.wiki/style.css

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ body {
55
font: 11pt monospace;
66
}
77

8-
.freeze {
9-
color: #009485;
10-
}
11-
128
div {
139
display: flex;
1410
justify-content: center;
@@ -30,3 +26,12 @@ code {
3026
color: #00FF00;
3127
padding: 0.5rem;
3228
}
29+
30+
.freeze {
31+
color: #009485;
32+
}
33+
34+
.offline-icon {
35+
color: #EA3323;
36+
fill: #EA3323;
37+
}

0 commit comments

Comments
 (0)