Is it possible to set headers for a specific path in fly.toml?

I know I can set headers in fly.toml:

// fly.toml
[http_service.http_options.response.headers]
  X-Robots-Tag = "noindex, nofollow"

But can I do that for a specific path(s)?

In my case I’m running Umami from their provided Docker image and I’d like it to be a “black box”, I don’t want to touch the app code at all, but I’d like to control the headers.

Should I set an NGINX proxy for that? Or what would be the easiest?

Thanks :slight_smile: