Request ID

Adds a `x-request-id` header to every response to downstream (client) and upstream (your website)

In order to enable a particular route to include x-request-id, you can do the following:

proksi.hcl
lets_encrypt {
  enabled = true
  email = "test@email.com"
}

routes = [
  {
    host = "mywebsite.com"
    
    plugins = [{ 
      name = "request_id" 
    }]
  }
]

Last updated