From 751373d5dd2d4b56719066d15827a5d12ac8df85 Mon Sep 17 00:00:00 2001 From: lyc8503 Date: Mon, 14 Apr 2025 02:14:56 +0800 Subject: [PATCH] feat: remote checker should work, add config example --- uptime.config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/uptime.config.ts b/uptime.config.ts index de1b564..b1bdea8 100644 --- a/uptime.config.ts +++ b/uptime.config.ts @@ -55,8 +55,9 @@ const workerConfig = { // [OPTIONAL] if specified, the response must NOT contains the keyword to be considered as operational. responseForbiddenKeyword: 'bad gateway', // [OPTIONAL] if specified, will call the check proxy to check the monitor, mainly for geo-specific checks - // refer to docs **TODO** before setting this value - checkProxy: 'https://xxx.example.com', + // refer to docs https://github.com/lyc8503/UptimeFlare/wiki/Check-proxy-setup before setting this value + // currently supports `worker://` and `http(s)://` proxies + checkProxy: 'https://xxx.example.com OR worker://weur', // [OPTIONAL] if true, the check will fallback to local if the specified proxy is down checkProxyFallback: true, },