forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnginx-502.html
More file actions
61 lines (61 loc) · 2.08 KB
/
nginx-502.html
File metadata and controls
61 lines (61 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Datatracker DEV</title>
<style>
body {
background-color: #111;
color: #FFF;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
padding: 50px;
font-size: 16px;
}
img {
height: 80px;
}
h1 {
color: #CCC;
}
div {
background-color: #222;
border-radius: 10px;
padding: 10px 50px;
}
i {
font-size: 64px;
line-height: 16px;
vertical-align: text-bottom;
margin-right: 5px;
}
code {
background-color: #444;
padding: 3px 6px;
border-radius: 5px;
margin: 0 5px;
}
.mt {
margin-top: 15px;
}
a {
color: #31CCEC;
}
</style>
</head>
<body>
<img src="/_static/logos/ietf-inverted.svg" alt="IETF" />
<h1>Datatracker</h1>
<h2>Could not connect to dev server.</h2>
<div>
<p>Is the datatracker server running?</p>
<p class="mt">Using <strong>VS Code</strong>, open the <strong>Run and Debug</strong> tab on the left and click the <i>‣</i> symbol (Run Server) to start the server.</p>
<p>Otherwise, run the command <code>ietf/manage.py runserver 8001</code> from the terminal.</p>
</div>
<div class="mt">
<p>You can manage the database at <a href="/pgadmin">/pgadmin</a>.</p>
</div>
<p class="mt">For more information, check out the <a href="https://github.com/ietf-tools/datatracker/blob/main/docker/README.md" target="_blank">Datatracker Development in Docker</a> guide.</p>
</body>
</html>