@piecritic This got me started on the right solution. I need both these location blocks, or I get a generic 410 response instead of my custom 410.html.
```
error_page 410 /410.html;
location =/410.html {
internal;
}
location / {
return 410;
}
```