diff options
Diffstat (limited to 'services/frontend')
| -rw-r--r-- | services/frontend/haproxy.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/services/frontend/haproxy.nix b/services/frontend/haproxy.nix index c39fc04..8bef462 100644 --- a/services/frontend/haproxy.nix +++ b/services/frontend/haproxy.nix @@ -166,6 +166,11 @@ in (map (name: "crt " + name + "/full.pem") [ config.smalltech.domain ])) + ("bind ipv6@:443 ssl alpn h2,http/1.2 " + + builtins.concatStringsSep " " + (map (name: "crt " + name + "/full.pem") [ + config.smalltech.domain + ])) # Since this traffic is on the HTTPS port, we override the default # TCP mode. |