Very nice!
Comment on Admins: Instnace randomly running extremely slowly? Check for this
ademir@lemmy.eco.br 6 days ago
For Cloudflare users:
Security Rules:
(http.request.uri.path eq "/api/v3/comment/list" and not http.request.uri.query contains "post_id")
For Caddy users:
# >>> Specific handler for /api/v3/comment/list with post_id check handle_path /api/v3/comment/list { # Check if the 'post_id' query parameter is present @hasPostId { query post_id=* } # Abort the connection if the parameter is missing handle @hasPostId { reverse_proxy http://localhost:8536/ } # This handles all requests that did not match @hasPostId abort }
admiralpatrick@lemmy.world 6 days ago
supakaity@lemmy.blahaj.zone 6 days ago
I found that the Caddy handler above blocked many third party clients and even Tesseract.
So instead I’m using this CEL expression to return a 444 error on match of the unscoped old-sorted 50 per-page comments past page 99: