Skip to content

Commit

Permalink
Enable http3_hq in http3 tune config instead.
Browse files Browse the repository at this point in the history
  • Loading branch information
strarsis committed Aug 31, 2024
1 parent 64148cf commit b5d54fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
http3_hq on;
quic_retry on;
quic_gso on;

# enable 0-RTT
#ssl_early_data on;
#proxy_set_header Early-Data $ssl_early_data;

quic_gso on;
2 changes: 0 additions & 2 deletions roles/wordpress-setup/templates/wordpress-site.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ server {

http2 {{ nginx_http2_enabled | default(false) | ternary('on', 'off') }};
http3 {{ nginx_http3_enabled | default(false) | ternary('on', 'off') }};
http3_hq {{ nginx_http3_enabled | default(false) | ternary('on', 'off') }};
server_name {{ site_hosts_canonical | union(multisite_subdomains_wildcards) | join(' ') }};
{% endblock %}

Expand Down Expand Up @@ -326,7 +325,6 @@ server {

http2 {{ nginx_http2_enabled | default(false) | ternary('on', 'off') }};
http3 {{ nginx_http3_enabled | default(false) | ternary('on', 'off') }};
http3_hq {{ nginx_http3_enabled | default(false) | ternary('on', 'off') }};
server_name {{ host.redirects | join(' ') }};

{% if nginx_http3_enabled and ssl_enabled -%}
Expand Down

0 comments on commit b5d54fc

Please sign in to comment.