fediverse.md 1.0 KB

How to Block Cloudflare

on Fediverse

This page show you how to block CloudFlare servers from your timeline.

With Mastodon (as User)

click me
  1. Download Cloudflare-only Fediverse list above.
  2. Go to your Preferences -> Import and Export section.
  3. Select Import type Domain blocklist list, select Data file to your downloaded text file, click UPLOAD.
  4. Confirm the import if asked.
  5. Wait for Mastodon complete the import. This will take a long time.

With Mastodon (as Admin)

click me
  1. Download Cloudflare-only Fediverse list above. (API info)
  2. Save below script and run it.
#!/bin/bash

while IFS= read -r domain
do
  tootctl domains block "$domain"
done < cf_fediverse.txt