Proksi
  • 🚀General
    • Getting started
    • Performance
    • Motivations
    • Specifications
  • 💾Installation
    • Docker
    • Single binary
  • 📚Configuration
    • HCL
      • Functions
    • YAML
    • ENV
    • Logging
    • Auto Reload
    • Daemon
    • Redis
  • 🔀Routing
    • Upstreams
    • Headers
  • 🧩Plugins
    • Request ID
    • Basic Auth
    • OAuth2
  • đŸ“Ŋī¸Use cases
    • Cache
    • Docker swarm
  • đŸ›Šī¸Contributing
    • Repository
  • Github
  • Crates.io
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Plugins

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" 
    }]
  }
]
PreviousHeadersNextBasic Auth

Last updated 10 months ago

Was this helpful?

🧩