新增ssl_self_check目录用于ssl自检部署
This commit is contained in:
@@ -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>
|
||||
@@ -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
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"value": "success"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 80 B |
@@ -0,0 +1 @@
|
||||
The rain in Spain stays mainly in the plain.
|
||||
@@ -0,0 +1 @@
|
||||
message = "loaded";
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user