deCloudflare/subfiles/block_cloudflare_with/fediverse.md

40 lines
1.0 KiB
Markdown
Raw Normal View History

2023-08-15 19:40:40 -04:00
# How to Block Cloudflare
## on Fediverse
This page show you how to block CloudFlare servers from your timeline.
2023-09-11 19:08:18 -04:00
- [Cloudflare-only Fediverse list](../service/karma_api.md#get-data), from [Cloudflared Fediverse](../cloudflared/social/fediverse.md)
2023-08-16 03:35:09 -04:00
- [Alternative Link](../service/altlink.md)
2023-08-15 19:40:40 -04:00
### With Mastodon (as User)
<details><summary> _click me_ </summary>
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.
</details>
### With Mastodon (as Admin)
<details><summary> _click me_ </summary>
1. Download `Cloudflare-only Fediverse list` above. ([API info](../service/karma_api.md#get-data))
2. Save below script and run it.
```
#!/bin/bash
while IFS= read -r domain
do
tootctl domains block "$domain"
done < cf_fediverse.txt
```
</details>