Server tools to backfill, tail, mirror, and verify PLC logs

fix proxy proxying everything bug

i don't like poem's router

+2 -2
+2 -2
src/mirror.rs
··· 431 431 .with(GovernorMiddleware::new(did_limiter)) 432 432 .with(GovernorMiddleware::new(ip_limiter)); 433 433 434 - app = app.at("/*", get(proxy).post(upstream_proxier)); 434 + app = app.at("/did:plc:*", get(proxy).post(upstream_proxier)); 435 435 } else { 436 - app = app.at("/*", get(proxy).post(nope)); 436 + app = app.at("/did:plc:*", get(proxy).post(nope)); 437 437 } 438 438 439 439 let app = app