diff --git a/index.html b/index.html index 0f35ede..2404d55 100644 --- a/index.html +++ b/index.html @@ -88921,13 +88921,15 @@

`::position`

(defn- jetty-ssl-config []
   (m/filter-vals
    some?
-   {:ssl-port       (config/config-int :mb-jetty-ssl-port)
-    :keystore       (config/config-str :mb-jetty-ssl-keystore)
-    :key-password   (config/config-str :mb-jetty-ssl-keystore-password)
-    :truststore     (config/config-str :mb-jetty-ssl-truststore)
-    :trust-password (config/config-str :mb-jetty-ssl-truststore-password)
-    :client-auth    (when (config/config-bool :mb-jetty-ssl-client-auth)
-                      :need)}))
+ {:ssl-port (config/config-int :mb-jetty-ssl-port) + :keystore (config/config-str :mb-jetty-ssl-keystore) + :key-password (config/config-str :mb-jetty-ssl-keystore-password) + :truststore (config/config-str :mb-jetty-ssl-truststore) + :trust-password (config/config-str :mb-jetty-ssl-truststore-password) + :client-auth (when (config/config-bool :mb-jetty-ssl-client-auth) + :need) + :sni-host-check? (when (config/config-str :mb-jetty-ssl-insecure) + false)}))
(defn- jetty-config []
   (cond-> (m/filter-vals
            some?
@@ -88943,8 +88945,7 @@ 

`::position`

(config/config-str :mb-jetty-ssl) (-> (assoc :ssl? true) (merge (jetty-ssl-config)))))
(defn- log-config [jetty-config]
-  (log/info (trs "Launching Embedded Jetty Webserver with config:")
-            "\n"
+  (log/info "Launching Embedded Jetty Webserver with config:\n"
             (u/pprint-to-str (m/filter-keys
                               #(not (str/includes? % "password"))
                               jetty-config))))