From fc350c75b0d3122ef2d08a5f9d1cc164a69c08a6 Mon Sep 17 00:00:00 2001 From: David Lundgren Date: Fri, 21 Oct 2022 08:50:18 -0500 Subject: [PATCH] Setup should be aware of the Let's Encrypt no random sleep flag --- util/Setup/Configuration.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/util/Setup/Configuration.cs b/util/Setup/Configuration.cs index b58b87952..ddbba6d57 100644 --- a/util/Setup/Configuration.cs +++ b/util/Setup/Configuration.cs @@ -106,6 +106,9 @@ public class Configuration [Description("Enable SCIM")] public bool EnableScim { get; set; } = false; + [Description("Disable random sleep when renewing a Let's Encrypt SSL certificate.")] + public bool LetsEncryptNoRandomSleepOnRenew { get; set; } = false; + [YamlIgnore] public string Domain {