···8080 /// you must also configure the relevant DNS records for this to work
8181 #[arg(long, action, requires("tls_domain"), env = "SLINGSHOT_TLS_IPV6")]
8282 tls_ipv6: bool,
8383+ /// with tls configured on 443, say "please use https" on port 80
8484+ ///
8585+ /// note: configuring tls always binds port 80 as well, 443-only is TODO
8686+ #[arg(long, action, requires("tls_domain"), env = "SLINGSHOT_WARN_INSECURE")]
8787+ warn_insecure: bool,
8388 /// redirect acme http-01 challenges to this url
8489 ///
8590 /// useful if you're setting up a second instance that synchronizes its
···201206 args.tls_domain,
202207 args.tls_certs,
203208 args.tls_ipv6,
209209+ args.warn_insecure,
204210 args.acme_challenge_redirect,
205211 args.acme_contact,
206212 args.acme_staging,