Merge pull request #185856 from NoneTirex/fix-headscale-tls-config

headscale: fix tls challengeType enum possible values
This commit is contained in:
Jörg Thalheim
2022-08-15 17:51:49 +01:00
committed by GitHub
@@ -286,11 +286,11 @@ in
'';
};
challengeType = mkOption {
type = types.enum [ "TLS_ALPN-01" "HTTP-01" ];
type = types.enum [ "TLS-ALPN-01" "HTTP-01" ];
default = "HTTP-01";
description = lib.mdDoc ''
Type of ACME challenge to use, currently supported types:
`HTTP-01` or `TLS_ALPN-01`.
`HTTP-01` or `TLS-ALPN-01`.
'';
};
httpListen = mkOption {