File: _http2.epp

package info (click to toggle)
puppet-module-puppetlabs-apache 12.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,664 kB
  • sloc: ruby: 275; sh: 32; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 1,473 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<% if $h2_copy_files != undef { -%>
  H2CopyFiles <%= apache::bool2httpd($h2_copy_files) %>
<% } -%>
<% if $h2_direct != undef { -%>
  H2Direct <%= apache::bool2httpd($h2_direct) %>
<% } -%>
<% if $h2_early_hints != undef {-%>
  H2EarlyHints <%= apache::bool2httpd($h2_early_hints) %>
<% } -%>
<% if $h2_max_session_streams != undef { -%>
  H2MaxSessionStreams <%= $h2_max_session_streams %>
<% } -%>
<%- if $h2_modern_tls_only != undef { -%>
  H2ModernTLSOnly <%= apache::bool2httpd($h2_modern_tls_only) %>
<%- } -%>
<%- if $h2_push != undef { -%>
  H2Push <%= apache::bool2httpd($h2_push) %>
<%- } -%>
<%- if $h2_push_diary_size != undef { -%>
  H2PushDiarySize <%= $h2_push_diary_size %>
<%- } -%>
<%- $h2_push_priority.each |$expr| { -%>
  H2PushPriority <%= $expr %>
<%- } -%>
<%- $h2_push_resource.each |$expr| { -%>
  H2PushResource <%= $expr %>
<%- } -%>
<% if $h2_serialize_headers != undef  { -%>
  H2SerializeHeaders <%= apache::bool2httpd($h2_serialize_headers) %>
<% } -%>
<% if $h2_stream_max_mem_size != undef { -%>
  H2StreamMaxMemSize <%= $h2_stream_max_mem_size %>
<% } -%>
<%- if $h2_tls_cool_down_secs != undef { -%>
  H2TLSCoolDownSecs <%= $h2_tls_cool_down_secs %>
<%- } -%>
<%- if $h2_tls_warm_up_size != undef { -%>
  H2TLSWarmUpSize <%= $h2_tls_warm_up_size %>
<%- } -%>
<% if $h2_upgrade != undef { -%>
  H2Upgrade <%= apache::bool2httpd($h2_upgrade) %>
<% } -%>
<% if $h2_window_size != undef { -%>
  H2WindowSize <%= $h2_window_size %>
<% } -%>