description |
---|
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:
{% code title="proksi.hcl" lineNumbers="true" %}
lets_encrypt {
enabled = true
email = "[email protected]"
}
routes = [
{
host = "mywebsite.com"
plugins = [{
name = "request_id"
}]
}
]
{% endcode %}