uptime-status/public/config.js
2022-08-09 11:53:56 +08:00

37 lines
735 B
JavaScript
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.

// 配置
window.Config = {
// 显示标题
SiteName: '云生站点监测',
// UptimeRobot Api Keys
// 支持 Monitor-Specific 和 Read-Only
ApiKeys: [
'ur1078385-b9802a0868414b8a975d5038',
],
// 日志天数
// 虽然免费版说仅保存60天日志但测试好像API可以获取90天的
// 不过时间不要设置太长,容易卡,接口请求也容易失败
CountDays: 60,
// 是否显示检测站点的链接
ShowLink: true,
// 导航栏菜单
Navi: [
{
text: '主页',
url: 'https://tjys.tk'
},
{
text: '博客',
url: 'https://blog.qikaile.tk'
},
{
text: 'GitHub',
url: 'https://github.com/qikaile/uptime-status'
},
],
};