Anyone know how I can force nginx to reply with a 410 (or some other code) for a POST request?
I killed my Pixelfed server a while ago. I'm returning 410 from nginx:
```
error_page 410 @gone;
location @gone {
rewrite . /410.html break;
}
location / {
return 410;
}
```
GET requests return 410, but POST requests return a 405. xoxo.zone as well as many other servers don't register this as a "failure" so it's still being hit all these months later. Can I force a different reply?