summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/srcdoc/configure/http1_directives.mt
blob: 77894acc653a6beb698b1eb289eb5c74f076e6d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
? my $ctx = $main::context;
? $_mt->wrapper_file("wrapper.mt", "Configure", "HTTP/1 Directives")->(sub {

<p>
This document describes the configuration directives for controlling the HTTP/1 protocol handler.
</p>

<?
$ctx->{directive}->(
    name    => "http1-request-timeout",
    levels  => [ qw(global) ],
    default => 'http1-request-timeout: 10',
    desc    => q{Timeout for incoming requests in seconds.},
)->(sub {});

$ctx->{directive}->(
    name    => "http1-upgrade-to-http2",
    levels  => [ qw(global) ],
    default => 'http1-upgrade-to-http2: ON',
    desc    => q{Boolean flag (<code>ON</code> or <code>OFF</code>) indicating whether or not to allow upgrade to HTTP/2.},
)->(sub {});
?>

? })