-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (49 loc) · 1.11 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>NGINX WEB SERVER</title>
<link rel="preload" href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
font-family: 'Open Sans', sans-serif;
line-height: inherit;
background-color: #082032;
color: #0A81AB;
}
.center {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.title {
max-width: 600px;
padding: 40px 20px;
font-size: 38px;
text-align: center;
}
a {
padding: 0 20px;
color: #ffffff;
text-decoration: none;
font-size: 44px;
}
a:hover {
opacity: 0.7;
}
</style>
</head>
<body>
<div class="center">
<div class="title">
Nginx server with two app on one host across proxy pass
</div>
<div>
<a href="/vue">Vue</a>
<a href="/react">React</a>
</div>
</div>
</body>
</html>