Compare commits
4 commits
9594dfd67b
...
dbe5cac454
Author | SHA1 | Date | |
---|---|---|---|
dbe5cac454 | |||
f17ccffc48 | |||
97b4e0995d | |||
7ed3fb4206 |
5 changed files with 104 additions and 4 deletions
|
@ -4,9 +4,5 @@
|
|||
},
|
||||
"m.identity_server": {
|
||||
"base_url": "https://matrix.org"
|
||||
},
|
||||
"org.matrix.msc3575.proxy": {
|
||||
"url": "https://matrix-server-sync.lermer.nl"
|
||||
}
|
||||
|
||||
}
|
12
.well-known/matrix/client copy
Normal file
12
.well-known/matrix/client copy
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"m.homeserver": {
|
||||
"base_url": "https://matrix-server.lermer.nl"
|
||||
},
|
||||
"m.identity_server": {
|
||||
"base_url": "https://matrix.org"
|
||||
},
|
||||
"org.matrix.msc3575.proxy": {
|
||||
"url": "https://matrix-server-sync.lermer.nl"
|
||||
}
|
||||
|
||||
}
|
90
404.html
Executable file
90
404.html
Executable file
|
@ -0,0 +1,90 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Lermer's CDN</title>
|
||||
<link rel="icon" href="afb/favicon.png" type="image/png">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<style>
|
||||
body, html {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.bg-image {
|
||||
/* The image used */
|
||||
/* background-image: url("afb/pad.jpg"); */
|
||||
background-image: url("https://cdn.lermer.nl/afb/matrix_world.jpeg");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
|
||||
/* Add the blur effect */
|
||||
/* filter: blur(8px);
|
||||
-webkit-filter: blur(0px); */
|
||||
|
||||
/* Full height */
|
||||
height: 100%;
|
||||
|
||||
/* Center and scale the image nicely */
|
||||
|
||||
}
|
||||
|
||||
/* Position text in the middle of the page/image */
|
||||
.bg-text {
|
||||
background-color: rgb(0,0,0); /* Fallback color */
|
||||
background-color: rgba(0, 71, 10, 0.637); /* Black w/opacity/see-through */
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
border: 3px solid green;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 2;
|
||||
width: 80%;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
|
||||
background-image: url("https://cdn.lermer.nl/afb/matrix_rain_small.gif");
|
||||
background-repeat: repeat;
|
||||
background-size: auto;
|
||||
}
|
||||
#online h1{
|
||||
color: green;
|
||||
font-size: 80px;
|
||||
text-shadow: -3px 0 grey, 0 3px grey, 3px 0 grey, 0 -3px grey, 1px 1px 2px grey, 0 0 25px grey, 0 0 5px grey;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script async src="https://ackee.lermer.nl/tracker.js" data-ackee-server="https://ackee.lermer.nl" data-ackee-domain-id="3073eb6a-be91-4c11-ba8c-f578bb05eac4"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="bg-image"></div>
|
||||
|
||||
<div class="bg-text">
|
||||
<h2>CDN Status:</h2>
|
||||
<div id="online">
|
||||
<h1>ONLINE</h1>
|
||||
</div>
|
||||
|
||||
<p><span id="datetime"></span></p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
<script>
|
||||
function goBack() {
|
||||
window.history.back();
|
||||
}
|
||||
|
||||
var dt = new Date();
|
||||
document.getElementById("datetime").innerHTML = (("0"+dt.getDate()).slice(-2)) +"-"+ (("0"+(dt.getMonth()+1)).slice(-2)) +"-"+ (dt.getFullYear()) +" "+ (("0"+dt.getHours()).slice(-2)) +":"+ (("0"+dt.getMinutes()).slice(-2));
|
||||
</script>
|
||||
|
||||
</html>
|
BIN
afb/42.png
Normal file
BIN
afb/42.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 248 KiB |
|
@ -59,6 +59,8 @@ body, html {
|
|||
text-shadow: -3px 0 grey, 0 3px grey, 3px 0 grey, 0 -3px grey, 1px 1px 2px grey, 0 0 25px grey, 0 0 5px grey;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script async src="https://ackee.lermer.nl/tracker.js" data-ackee-server="https://ackee.lermer.nl" data-ackee-domain-id="3073eb6a-be91-4c11-ba8c-f578bb05eac4"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue