10 changed files with 176 additions and 17 deletions
@ -0,0 +1,83 @@
|
||||
<!doctype html> |
||||
<html lang="en"> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
<title>hello world</title> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
|
||||
<style> |
||||
html { |
||||
background-repeat: no-repeat; |
||||
background-size: 100%; |
||||
background-image: linear-gradient(to bottom, #0074ba 0%, #6c9ad1 100%); |
||||
height: 100%; |
||||
} |
||||
header { |
||||
padding: 2vh 4vw; |
||||
color: white; |
||||
} |
||||
body { |
||||
font-family: -apple-system,system-ui,BlinkMacSystemFont,"Ubuntu",Roboto,"Segoe UI",sans-serif; |
||||
margin: 0; |
||||
padding: 0; |
||||
} |
||||
.page { |
||||
padding: 2vw 4vw; |
||||
background: #d9d9d9; |
||||
color: #432; |
||||
min-height: 30em; |
||||
box-shadow: 0em 0em 5em 0 #0005; |
||||
} |
||||
|
||||
.horizontal { |
||||
display: flex; |
||||
align-items: flex-start; |
||||
} |
||||
.space-around { |
||||
justify-content: space-around; |
||||
} |
||||
|
||||
.arch-box { |
||||
display: flex; |
||||
flex-direction: column; |
||||
align-items: center; |
||||
background: white; |
||||
margin: 1rem; |
||||
padding: 1rem 2rem; |
||||
border-radius: 1rem; |
||||
border: 0.2rem dashed #cba; |
||||
z-index: 1; |
||||
} |
||||
.arch-box img { |
||||
position: relative; |
||||
z-index: 2; |
||||
} |
||||
|
||||
</style> |
||||
</head> |
||||
<body> |
||||
<header> |
||||
<h1> |
||||
Hello, World! |
||||
</h1> |
||||
</header> |
||||
<main> |
||||
<section class="page"> |
||||
<div class="horizontal space-around"> |
||||
<div class="arch-box"> |
||||
<img src="https://git.sequentialread.com/forest/seedpacket/raw/master/webcontent/images/logo.png"/> |
||||
<p> |
||||
Your server is online! |
||||
</p> |
||||
|
||||
</div> |
||||
</div> |
||||
|
||||
</section> |
||||
</main> |
||||
<footer> |
||||
|
||||
</footer> |
||||
</body> |
||||
</html> |
@ -0,0 +1,10 @@
|
||||
{ |
||||
"admin": { |
||||
"disabled": false, |
||||
"listen": "unix//caddysocket/caddy.sock", |
||||
"origins": ["localhost"], |
||||
"config": { |
||||
"persist": false |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,14 @@
|
||||
{ |
||||
"DebugLog": false, |
||||
"AdminUnixSocket": "/threshold/socket/threshold.sock", |
||||
"ClientIdentifier": "odroidxu4", |
||||
"ServerAddr": "greenhouseusers.com:9056", |
||||
"UseTls": true, |
||||
"ServiceToLocalAddrMap": { |
||||
"https": "127.0.0.1:445", |
||||
"http": "127.0.0.1:80" |
||||
}, |
||||
"CaCertificateFilesGlob": "config/greenhouseusers.com_CA.crt", |
||||
"ClientTlsKeyFile": "config/odroidxu4@greenhouseusers.com.key", |
||||
"ClientTlsCertificateFile": "config/odroidxu4@greenhouseusers.com.crt" |
||||
} |
Loading…
Reference in new issue