-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patherror.html
67 lines (63 loc) · 1.97 KB
/
error.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>The page is temporarily unavailable</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
background-color: #f8fafc;
color: #000;
font-size: 0.9em;
font-family: sans-serif, helvetica;
margin: 0;
padding: 0;
}
.app-container {
min-height: 100vh;
min-width: 100vw;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.app-card {
background-color: #fff;
border-radius: 4px;
padding: 20px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.02),
0 5px 22px -8px rgba(0, 0, 0, 0.1);
display: block;
width: 33.33%;
text-align: center;
}
.logo {
border-radius: 4px;
height: 100px;
width: 100px;
}
.title {
color: indianred;
}
/*]]>*/
</style>
</head>
<body>
<div class="app-container">
<div class="app-card">
<img src="./images/reactivesearch-logo.png" width="150" alt="logo" />
<h2 class="title">
<strong>ReactiveSearch API server instance isn't running or setup yet!</strong>
</h2>
<p>
If you are the admin, you can configure the ReactiveSearch API server instance by going to
<a href="/configure">configure page</a>. If you have already setup
the ReactiveSearch API server instance and are seeing issues, you can see the logs using
<code>sudo docker logs rs-api</code>. If you are unable to debug the
issue, you can reach out for support at
<a href="mailto:support@appbase.io">support@appbase.io</a> with the
logs.
</p>
</div>
</div>
</body>
</html>