From 91275eb478ceb58083426099b6da3f4c7e189f19 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 30 May 2024 04:50:01 +0200 Subject: Merging debian version 1.9.4-1. Signed-off-by: Daniel Baumann --- .../srcdoc/configure/headers_directives.mt | 84 ---------------------- 1 file changed, 84 deletions(-) delete mode 100644 debian/vendor-h2o/srcdoc/configure/headers_directives.mt (limited to 'debian/vendor-h2o/srcdoc/configure/headers_directives.mt') diff --git a/debian/vendor-h2o/srcdoc/configure/headers_directives.mt b/debian/vendor-h2o/srcdoc/configure/headers_directives.mt deleted file mode 100644 index 6c2af07..0000000 --- a/debian/vendor-h2o/srcdoc/configure/headers_directives.mt +++ /dev/null @@ -1,84 +0,0 @@ -? my $ctx = $main::context; -? $_mt->wrapper_file("wrapper.mt", "Configure", "Headers Directives")->(sub { - -

-This document describes the configuration directives of the headers handler. -

- -{directive}->( - name => "header.add", - levels => [ qw(global host path extension) ], - desc => q{Adds a new header line to the response headers, regardless if a header with the same name already exists.}, -)->(sub { -?> -
-
Example. Setting the Set-Cookie header
-
header.add: "Set-Cookie: test=1"
-
-? }) - -{directive}->( - name => "header.append", - levels => [ qw(global host path extension) ], - desc => <<'EOT', -Adds a new header line, or appends the value to the existing header with the same name, separated by ,. -EOT -)->(sub {}); -?> - -{directive}->( - name => "header.merge", - levels => [ qw(global host path extension) ], - desc => <<'EOT', -Adds a new header line, or merges the value to the existing header of comma-separated values. -EOT -)->(sub { -?> -

-The following example sets the must-revalidate attribute of the Cache-Control header when and only when the attribute is not yet being set. -

-{example}->('Setting the must-revalidate attribute', <<'EOT') -header.merge: "Cache-Control: must-revalidate" -EOT -?> -? }) - -{directive}->( - name => "header.set", - levels => [ qw(global host path extension) ], - desc => q{Sets a header line, removing headers with the same name if exists.}, -)->(sub { -?> -{example}->('Setting the X-Content-Type-Options: nosniff header', <<'EOT') -header.set: "X-Content-Type-Options: nosniff" -EOT -?> -? }) - -{directive}->( - name => "header.setifempty", - levels => [ qw(global host path extension) ], - desc => <<'EOT', -Sets a header line when and only when a header with the same name does not already exist. -EOT -)->(sub {}); - -{directive}->( - name => "header.unset", - levels => [ qw(global host path extension) ], - desc => q{Removes headers with given name.}, -)->(sub { -?> -{example}->('Removing the X-Powered-By header', <<'EOT') -header.unset: "X-Powered-By" -EOT -?> -? }) - -? }) -- cgit v1.2.3