[Caddy try_files surprise]

```
root ${avatars}
try_files {path}.jpg =404
```

If /avatars/{path}.jpg does not exist, we get the expected 404. Great.

If it does, instead of the file, we get an empty 200 response. This is because `try_files` only rewrites the request. It still needs a […]

Comments