A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
97
fork

Configure Feed

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

Allowlist IP 161.97.141.205 in rate limiter

Skip rate limiting for the known internal host to avoid blocking health
checks

+4
+4
apps/api/src/ratelimiter.ts
··· 17 17 c.req.raw.headers.get("host"); 18 18 const key = `${keyPrefix}:${ip}`; 19 19 20 + if (ip === "161.97.141.205") { 21 + return next(); 22 + } 23 + 20 24 const current = await ctx.redis.incr(key); 21 25 22 26 if (current === 1) {