Re: [squid-users] Dynamic HTTP Header Addition

From: Alex Rousskov <rousskov_at_measurement-factory.com>
Date: Tue, 03 Sep 2013 09:15:49 -0600

On 09/03/2013 04:37 AM, Norbert Naveen wrote:
> Hello ,
> There is possibility of adding a new HTTP header via
> Usage: request_header_add field-name field-value acl1 [acl2] ...
> Example: request_header_add X-Client-CA "CA=%ssl::>cert_issuer" all
>
> Wanted to know if the HTTP header value can be dynamic ?

Yes, the example you quoted already contains a dynamic header value
(HTTP client certificate issuer).

> and can
> invoke a program to fetch the Value dynamically and populate?

Yes, with recent Squids, you can dynamically set annotations and then
use %note macro to add those annotations to HTTP request headers.
Annotations can be set using an eCAP adapter, a url_rewrite_program or,
IIRC, an external ACL. Here is a sketch:

  url_rewrite_program /this/helper/replies/with OK note1=dynamicValue
  acl hasNote1 note note1
  request_header_add X-Note1 "%{note1}note" hasNote1

HTH,

Alex.
Received on Tue Sep 03 2013 - 15:16:13 MDT

This archive was generated by hypermail 2.2.0 : Fri Sep 06 2013 - 12:00:04 MDT