this repo has no description
0
fork

Configure Feed

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

changes

alice 06faaa5f 20dce5ec

+33 -2
+20 -1
Caddyfile
··· 4 4 } 5 5 } 6 6 feeds.bsky.sh { 7 - reverse_proxy :3000 7 + @eepy { 8 + expression path_regexp('/xrpc/app.bsky.feed.getFeedSkeleton') && {query}.matches('.+?whos-eepy.*') 9 + } 10 + @alice { 11 + expression path_regexp('/xrpc/app.bsky.feed.getFeedSkeleton') && {query}.matches('.+?whos-alice.*') 12 + } 13 + @well-known { 14 + expression path_regexp('/.well-known.*') 15 + } 16 + handle @eepy { 17 + reverse_proxy :30001 18 + } 19 + 20 + handle @alice { 21 + reverse_proxy :30000 22 + } 23 + handle @well-known { 24 + reverse_proxy :30000 25 + } 26 + 8 27 import vercel 9 28 log { 10 29 output file {env.LOG_FILE}
+12
Caddyfile.old
··· 1 + (vercel) { 2 + tls { 3 + dns vercel {env.VERCEL_API_TOKEN} 4 + } 5 + } 6 + feeds.bsky.sh { 7 + reverse_proxy :3000 8 + import vercel 9 + log { 10 + output file {env.LOG_FILE} 11 + } 12 + }
+1 -1
src/server.ts
··· 74 74 }) 75 75 console.log('🗝️ logged in 🗝️') 76 76 this.firehose.run(this.agent) 77 - this.server = this.app.listen(this.cfg.port, '0.0.0.0') 77 + this.server = this.app.listen(this.cfg.port, '127.0.0.1') 78 78 await events.once(this.server, 'listening') 79 79 return this.server 80 80 }