@@ -282,7 +282,7 @@ cond %{INBOUND:<C>} {in,out}bound.conn.<c> inbound (:r
282282
283283 - ``inbound.req.<header> `` → ``CLIENT-HEADER `` - Headers from the client request
284284 - ``outbound.req.<header> `` → ``SERVER-HEADER `` - Headers in the request sent to origin
285- - ``inbound.url.<part> `` → ``CLIENT-URL `` - URL from the original client request
285+ - ``inbound.url.<part> `` → ``CLIENT-URL `` - URL from the original client request (which is immutable)
286286 - ``outbound.url.<part> `` → ``SERVER-URL `` - URL in the request sent to origin (after remapping)
287287 - ``nexthop.<field> `` → ``NEXT-HOP `` - Network destination info (host, port, strategy)
288288
@@ -319,7 +319,7 @@ add-header X-bar foo inbound.{req,resp}.x-Bar += "bar" Add the header t
319319counter my_stat counter("my_stat") Increment internal counter
320320rm-client-header X-Foo inbound.req.X-Foo = "" Remove a client request header
321321rm-cookie foo {in,out}bound.cookie.foo = "" Remove the cookie named foo
322- rm-destination <C> inbound .url.<C> = "" Remove an URL component, ``C `` is path, query etc.
322+ rm-destination <C> outbound .url.<C> = "" Remove an URL component, ``C `` is path, query etc.
323323rm-header X-Foo {in,out}bound.req.X-Foo = "" Context sensitive header removal
324324rm-destination QUERY ... remove_query("foo,bar") Remove specified query keys
325325rm-destination QUERY ... [I] keep_query("foo,bar") Keep only specified query keys
@@ -330,7 +330,7 @@ set-config <name> 12 set-config("name", 17) Set a configurat
330330set-conn-dscp 8 inbound.conn.dscp = 8 Set the DSCP value for the connection
331331set-conn-mark 17 inbound.conn.mark = 17 Set the MARK value for the connection
332332set-cookie foo bar {in,out}bound.cookie.foo = "bar" Set a request/response cookie named foo
333- set-destination <C> bar {in,out}bound .url.<C> = "bar" Set a URL component, <:ref: `C<admin-plugins-header-rewrite-url-parts> `> is path, query etc.
333+ set-destination <C> bar outbound .url.<C> = "bar" Set a URL component, <:ref: `C<admin-plugins-header-rewrite-url-parts> `> is path, query etc.
334334set-header X-Bar foo inbound.{req,resp}.X-Bar = "foo" Assign a client request/origin response header
335335set-plugin-cntl <C> <T> set-plugin-cntl(<C>) = <T> Set the plugin control <C> to <T>, see <:ref: `C<admin-plugins-header-rewrite-plugin-cntl> `>
336336set-redirect <Code> <URL> set-redirect(302, "\h ttps://...") Set a redirect response
@@ -1075,7 +1075,7 @@ Remove Client Query Parameters
10751075The following ruleset removes any query parameters set by the client.::
10761076
10771077 REMAP {
1078- inbound .url.query = "";
1078+ outbound .url.query = "";
10791079 }
10801080
10811081Remove only a few select query parameters::
0 commit comments