From e0f1803e33ea4622e1ab4b753cd82d74d7e2f85d Mon Sep 17 00:00:00 2001 From: Sienna Meridian Satterwhite Date: Mon, 2 Mar 2026 18:45:19 +0000 Subject: [PATCH] docs(ingress): document disable_secure_redirection and other per-route options --- base/ingress/pingora-config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/base/ingress/pingora-config.yaml b/base/ingress/pingora-config.yaml index c343c4b..cc65c09 100644 --- a/base/ingress/pingora-config.yaml +++ b/base/ingress/pingora-config.yaml @@ -28,6 +28,14 @@ data: # The prefix is the subdomain before the first dot, so these routes work # identically for yourdomain.com and *.sslip.io. # Edit to match your own service names and namespaces. + # + # Per-route options: + # host_prefix — subdomain to match (required) + # backend — upstream URL, e.g. "http://svc.ns.svc.cluster.local:8000" (required) + # websocket — proxy WebSocket upgrades (default: false) + # disable_secure_redirection — when true, plain-HTTP requests are forwarded + # as-is instead of being 301-redirected to HTTPS. + # Default: false (all HTTP → HTTPS redirect enforced). [[routes]] host_prefix = "docs"