Skip to content

Commit

Permalink
fix missing semicolon in alt-svc header
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbableck authored Oct 14, 2024
1 parent ec82f7e commit b4d1aab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Froxlor/Cron/Http/Nginx.php
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down

0 comments on commit b4d1aab

Please sign in to comment.