Baike.dev
All toolsAI codingTrendingOpen sourceNewsSubmit
Log in
< Back to tools
U

uptime-status

> 编程语言
Open source

A pretty dashboard of uptime status based on UptimeRobot API

1.4K stars0 likes0 views
WebsiteGitHub

About

A pretty dashboard of uptime status based on UptimeRobot API

uptime-status

一个基于 UptimeRobot API 的在线状态面板

事先准备

  • 您需要先到 UptimeRobot 添加站点监控,并在 My Settings 页面获取 API Key
  • 您需要拥有一个网站空间,常见的 Nginx / PHP 等空间即可,甚至是阿里云的 OSS 等纯静态空间也行

如何部署

  • 下载并解压缩:uptime-status.zip
  • 修改 config.js 文件:
    • SiteName: 要显示的网站名称
    • ApiKeys: 从 UptimeRobot 获取的 API Key,支持 Monitor-Specific API Keys 和 Read-Only API Key
    • CountDays: 要显示的日志天数,建议 60 或 90,显示效果比较好
    • ShowLink: 是否显示站点链接
    • Navi: 导航栏的菜单列表
  • 将所有文件上传到网站空间

⚠️ 如果没有修改代码的需求,您不需要 git clone 本项目,只需要下载 Release 的文件包即可。

接口代理

对于想自己搭建接口的代理的,可以参考以下 nginx 的配置文件:

server {
  listen [::]:80;
  server_name cors.status.org.cn;
  location / {
    proxy_ssl_server_name on;
    proxy_pass https://api.uptimerobot.com/;
    proxy_hide_header Access-Control-Allow-Origin;
    add_header Access-Control-Allow-Origin * always;
  }
}

GitHub Issues· 0 open

View all on GitHub

No open issues yet, or sync has not completed.

Highlights

  • •您需要先到 UptimeRobot 添加站点监控,并在 My Settings 页面获取 API Key
  • •您需要拥有一个网站空间,常见的 Nginx / PHP 等空间即可,甚至是阿里云的 OSS 等纯静态空间也行
  • •下载并解压缩:uptime-status.zip
  • •修改 config.js 文件:
  • •SiteName: 要显示的网站名称
  • •ApiKeys: 从 UptimeRobot 获取的 API Key,支持 Monitor-Specific API Keys 和 Read-Only API Key
  • •CountDays: 要显示的日志天数,建议 60 或 90,显示效果比较好
  • •ShowLink: 是否显示站点链接
  • •Navi: 导航栏的菜单列表
  • •将所有文件上传到网站空间

> Tags

JavaScript

No comments yet. Be the first to share.

> Details

PublishedAug 1, 2026
UpdatedSep 17, 2026
Category编程语言
PricingOpen source

> Related tools

T
TypeScript
JavaScript 的超集,为前端与全栈提供静态类型
P
Python
通用编程语言,广泛用于 Web、数据与 AI
G
Go
Google 推出的简洁高效系统语言