From 13a4b54eb0a999ca41fe96ef67bfd57eba752589 Mon Sep 17 00:00:00 2001 From: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com> Date: Sun, 28 Aug 2022 23:41:55 -0400 Subject: [PATCH] Configuration updates for HTTP/2 and caching This removes the anticache option because the server behind the reverse proxy can control caching, and it also disables the somewhat buggy and unnecessary HTTP/2 support. --- configuration/config.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configuration/config.yaml b/configuration/config.yaml index fce53fd..5b0c821 100644 --- a/configuration/config.yaml +++ b/configuration/config.yaml @@ -7,6 +7,9 @@ mode: reverse:http://127.0.0.1:81 keep_host_header: true block_global: false +# Disable HTTP/2 support, as it seems buggy and is not necessary +http2: false + # These settings make sure that connections are not blocked because they use an # old version of TLS. ssl_insecure: true @@ -21,10 +24,8 @@ confdir: ./configuration scripts: ["./pretendo_addon.py"] pretendo_redirect: true -# This simply attempts makes sure that no requests are cached. -anticache: true - # A couple convenience features console_focus_follow: true showhost: true console_palette: dark +console_layout: vertical