-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path502.html
90 lines (87 loc) · 2.21 KB
/
502.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>502 Bad Gateway</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Arial", sans-serif;
word-break: keep-all;
white-space: normal;
}
body {
background-color: #f2f2f2;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.container {
text-align: center;
max-width: 600px;
padding: 20px;
}
h1 {
font-size: 4rem;
color: #e74c3c;
}
p {
margin-top: 10px;
font-size: 1.2rem;
line-height: 1.6;
}
.button {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
font-size: 1rem;
color: #fff;
background-color: #3498db;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.retry {
background-color: #40525f;
}
.button:hover {
background-color: #2980b9;
}
#moreinfo {
background-color: white;
/* text-align: left; */
padding: 8px;
margin: 8px 0;
}
#moreinfo p {
margin: 0;
font-size: 1em;
}
</style>
</head>
<body>
<div class="container">
<h1>502</h1>
<p>
죄송합니다. 서버에 문제가 발생했습니다.<br />잠시 후 다시 시도해 주세요.
</p>
<div id="moreinfo">
<p>
저희 서비스는 정기적으로 업데이트를 진행하며,<br />업데이트 과정에서
서버를 재시작해야 하기 때문에 일시적으로 연결이 중단될 수 있습니다.
</p>
</div>
<a href="https://feed.handong.app" class="button"> 다시 시도 </a>
<a href="https://board.handong.app/feed" class="button retry">
한동피드 게시판 이동
</a>
</div>
</body>
</html>