新增ssl_self_check目录用于ssl自检部署

This commit is contained in:
fumingwei
2020-01-06 15:08:46 +08:00
parent c84e2d8fc7
commit d5a9f79981
174 changed files with 21993 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
---
title: basic-auth
layout: page
favicon: gray
background: gray
---
<div id="content">
<h1 style="font-size: 10vw;">
basic-auth
</h1>
</div>
<div id="footer">
This page is protected using <a href="https://en.wikipedia.org/wiki/Basic_access_authentication">HTTP Basic Authentication</a>.
</div>

View File

@@ -0,0 +1,20 @@
---
title: canceled-image
layout: page
favicon: gray
background: gray
---
<div id="content">
<h1 style="font-size: 5vw;">
canceled-image
</h1>
</div>
<script>
var xhr= new XMLHttpRequest();
xhr.open("GET", "https://google.com/image.jpg");
xhr.send();
xhr.abort();
</script

View File

@@ -0,0 +1,3 @@
{
"value": "success"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 B

View File

@@ -0,0 +1 @@
The rain in Spain stays mainly in the plain.

View File

@@ -0,0 +1 @@
message = "loaded";

View File

@@ -0,0 +1,32 @@
---
title: theme-color
layout: page
favicon: gray
background: gray
---
<div id="content">
<h1 style="font-size: 9vw;">
<input id="color" type="color" name="color" value="#00e000">
</h1>
</div>
<div id="footer">
This page allows setting a dynamic theme color.<br>
The color defaults to bright green, and will update with the page background.
</div>
<script>
var themeColor = document.createElement("meta");
themeColor.name = "theme-color";
document.head.appendChild(themeColor);
var colorElem = document.querySelector("#color");
var updateColor = function() {
themeColor.content = colorElem.value;
document.body.style.backgroundColor = colorElem.value;
}
updateColor();
colorElem.addEventListener("change", updateColor);
</script>