1
0
Fork 0

change default acme/tls required settings

This commit is contained in:
chaos 2023-09-14 18:55:12 +01:00
parent a2c58be308
commit c5ad01eac7
No known key found for this signature in database

View file

@ -39,13 +39,13 @@ in {
nginxForceSSL = mkOption { nginxForceSSL = mkOption {
type = types.bool; type = types.bool;
default = false; default = true;
description = "Should SSL/TLS be force enabled by nginx"; description = "Should SSL/TLS be force enabled by nginx";
}; };
nginxEnableACME = mkOption { nginxEnableACME = mkOption {
type = types.bool; type = types.bool;
default = false; default = true;
description = "Should ACME be force enabled by nginx"; description = "Should ACME be force enabled by nginx";
}; };