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

Configure Feed

Select the types of activity you want to include in your feed.

fix proxy proxying everything bug

i don't like poem's router

phil c8087abf 8c5e58c1

+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