···38 description = "Directory to store certificates and keys managed by the ACME service.";
39 };
4000000000041 enableSSL = mkOption {
42 type = types.bool;
43 default = false;
···38 description = "Directory to store certificates and keys managed by the ACME service.";
39 };
4041+ acmeFallbackHost = mkOption {
42+ type = types.str;
43+ default = "0.0.0.0";
44+ description = ''
45+ Host which to proxy requests to if acme challenge is not found. Useful
46+ if you want multiple hosts to be able to verify the same domain name.
47+ '';
48+ };
49+50 enableSSL = mkOption {
51 type = types.bool;
52 default = false;