Can you disable posting on a #Mastodon instance?
@realcaseyrollins I suppose you could block the necessary API call at the server level. Mastodon uses nginx, so you would want something like the following:
```location /api/v1/statuses { if ($request_method = POST ) { return 403; }}```
QOTO: Question Others to Teach Ourselves An inclusive, Academic Freedom, instance All cultures welcome. Hate speech and harassment strictly forbidden.