Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Update backend docs on Wed Jan 17 09:23:43 UTC 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jan 17, 2024
1 parent 2a1208c commit cc9f258
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -88921,13 +88921,15 @@ <h3>`::position`</h3>
</td><td class="codes"><pre class="brush: clojure">(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)}))</pre></td></tr><tr><td class="docs">
{: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)}))</pre></td></tr><tr><td class="docs">
</td><td class="codes"><pre class="brush: clojure">(defn- jetty-config []
(cond-&gt; (m/filter-vals
some?
Expand All @@ -88943,8 +88945,7 @@ <h3>`::position`</h3>
(config/config-str :mb-jetty-ssl) (-&gt; (assoc :ssl? true)
(merge (jetty-ssl-config)))))</pre></td></tr><tr><td class="docs">
</td><td class="codes"><pre class="brush: clojure">(defn- log-config [jetty-config]
(log/info (trs &quot;Launching Embedded Jetty Webserver with config:&quot;)
&quot;\n&quot;
(log/info &quot;Launching Embedded Jetty Webserver with config:\n&quot;
(u/pprint-to-str (m/filter-keys
#(not (str/includes? % &quot;password&quot;))
jetty-config))))</pre></td></tr><tr><td class="docs">
Expand Down

0 comments on commit cc9f258

Please sign in to comment.