From b4d1aab103d1ccdf017613db660b84ed8a964cc1 Mon Sep 17 00:00:00 2001 From: Lukas Bableck Date: Mon, 14 Oct 2024 13:44:15 +0200 Subject: [PATCH] fix missing semicolon in alt-svc header --- lib/Froxlor/Cron/Http/Nginx.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Froxlor/Cron/Http/Nginx.php b/lib/Froxlor/Cron/Http/Nginx.php index 95c4d7f95..18831b320 100644 --- a/lib/Froxlor/Cron/Http/Nginx.php +++ b/lib/Froxlor/Cron/Http/Nginx.php @@ -184,7 +184,7 @@ public function createIpPort() $this->nginx_data[$vhost_filename] .= "\t" . 'http3_hq on;' . "\n"; $this->nginx_data[$vhost_filename] .= "\t" . 'quic_gso on;' . "\n"; $this->nginx_data[$vhost_filename] .= "\t" . 'quic_retry on;' . "\n"; - $this->nginx_data[$vhost_filename] .= "\t" . 'add_header Alt-Svc \'h3=":' . $port . '" ma=86400\';' . "\n"; + $this->nginx_data[$vhost_filename] .= "\t" . 'add_header Alt-Svc \'h3=":' . $port . '"; ma=86400\';' . "\n"; } $this->nginx_data[$vhost_filename] .= "\t" . '# Froxlor default vhost' . "\n";