18 lines
481 B
Django/Jinja
18 lines
481 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
<IfModule http2_module>
|
|
{% if apache_http2_enabled %}
|
|
Protocols h2 h2c http/1.1
|
|
{% else %}
|
|
Protocols http/1.1 # http/2 disabled
|
|
{% endif %}
|
|
|
|
H2Push on
|
|
H2PushPriority * after
|
|
H2PushPriority text/css before
|
|
H2PushPriority image/jpeg after 32
|
|
H2PushPriority image/png after 32
|
|
H2PushPriority application/javascript interleaved
|
|
|
|
</IfModule>
|