1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-22 01:30:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
Files
bookshelfplus/server/nginx/html/50x.html

27 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Oh No!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Oh No! 服务器要炸啦!</h1>
<p>对不起,当前网站访问量过大,已超出服务器的最大处理能力,已触发自动保护机制。也请您不要频繁刷新,让服务器喝口水、喘口气儿吧~</p>
<p>我们还是一如既往完全免费的书栖网在网站不可用期间大家可以前往Git仓库下载电子书。</p>
<p>本站由程序员小墨开发并开源,不接受打赏。如果您想支持本站,可以去开源仓库或<a href="https://space.bilibili.com/457109942">去B站</a>为我点个Star如果您有能力的话也欢迎前往项目开源仓库为项目提交Pr。</p>
<p>感谢大家的支持。</p>
<p style="text-align: center;"><em>书栖网</em><br><em><span id="date"></span></em></p>
<script>
var d = new Date();
document.getElementById("date").innerHTML = d.getFullYear() + "." + (d.getMonth() + 1) + "." + d.getDate();
</script>
</body>
</html>