forked from alibaba/anyproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path502.pug
81 lines (78 loc) · 1.7 KB
/
502.pug
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
doctype html
html(lang="en")
head
title AnyProxy Inner Error
style.
body {
color: #666;
line-height: 1.5;
font-size: 13px;
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,SimSun,sans-serif;
}
body * {
box-sizing: border-box;
}
.stackError {
border-radius: 5px;
padding: 20px;
border: 1px solid #fdc;
background-color: #ffeee6;
color: #666;
}
.stackError li {
list-style-type: none;
}
.infoItem {
position: relative;
overflow: hidden;
border: 1px solid #d5f1fd;
background-color: #eaf8fe;
border-radius: 4px;
margin-bottom: 5px;
padding-left: 70px;
}
.infoItem .label {
position: absolute;
top: 0;
left: 0;
bottom: 0;
display: flex;
justify-content: flex-start;
align-items: center;
width: 70px;
font-weight: 300;
background-color: #76abc1;
color: #fff;
padding: 5px;
}
.infoItem .value {
overflow:hidden;
padding: 5px;
}
.tipItem .label {
background-color: #ecf6fd;
}
.tip {
color: #808080;
}
body
h1 # AnyProxy Inner Error
h3 Oops! Error happend when AnyProxy handle the request.
p.tip This is an error occurred inside AnyProxy, not from your target website.
.infoItem
.label
| Error:
.value #{error}
.infoItem
.label
| URL:
.value #{url}
if tipMessage
.infoItem
.label
| TIP:
.value!= tipMessage
p
ul.stackError
each item in errorStack
li= item