Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.draskencloud.com/llms.txt

Use this file to discover all available pages before exploring further.

pass_through

Requests are forwarded directly to the backend URL defined on the app’s active revision. The gateway acts as a transparent proxy — it validates auth, applies policies, then forwards the full request including path and query string.
Client: GET /payments/invoices?page=2
Gateway: → Backend: GET /invoices?page=2  (strips gateway_path prefix)

managed_endpoint

Each endpoint is individually defined in the gateway with its own upstream URL, allowed methods, and policy. Requests not matching a registered endpoint return 404. Use this mode when you need fine-grained control over which paths are exposed.

Choosing a Mode

ScenarioRecommended Mode
Proxying all traffic to a backendpass_through
Exposing only specific endpointsmanaged_endpoint
Gradual migration / versioningmanaged_endpoint
Routing mode is set at app creation and is immutable. Create a new app to change it.