Files
ansible/roles/apache/templates/etc_apache2_mods-available_http2.conf.j2
2025-10-10 11:07:34 +00:00

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>