From c6ffc720604d7a5f23e028b82d116cd7cd83042b Mon Sep 17 00:00:00 2001 From: Ben Cartwright-Cox Date: Thu, 23 Feb 2023 16:24:27 +0000 Subject: [PATCH] Undo default cache endpoint change to Cloudflare Was a mistake while testing. Since changing the defaults makes it a lot easier to play with the debugger --- cmd/stayrtr/stayrtr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/stayrtr/stayrtr.go b/cmd/stayrtr/stayrtr.go index 9022e0b..c93d135 100644 --- a/cmd/stayrtr/stayrtr.go +++ b/cmd/stayrtr/stayrtr.go @@ -77,7 +77,7 @@ var ( TimeCheck = flag.Bool("checktime", true, "Check if JSON file isn't stale (disable by passing -checktime=false)") - CacheBin = flag.String("cache", "https://rpki.cloudflare.com/rpki.json", "URL of the cached JSON data") + CacheBin = flag.String("cache", "https://console.rpki-client.org/vrps.json", "URL of the cached JSON data") Etag = flag.Bool("etag", true, "Control usage of Etag header (disable with -etag=false)") LastModified = flag.Bool("last.modified", true, "Control usage of Last-Modified header (disable with -last.modified=false)")