From 56a6a3730c7731f2d49aa7dad1da9a2155e8a311 Mon Sep 17 00:00:00 2001 From: gered Date: Tue, 18 Jan 2022 18:57:37 -0500 Subject: [PATCH] fix incorrect key for http server config --- resources/leiningen/new/simple_web_site/src/root_ns/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/leiningen/new/simple_web_site/src/root_ns/core.clj b/resources/leiningen/new/simple_web_site/src/root_ns/core.clj index 6a6f52a..22b3873 100644 --- a/resources/leiningen/new/simple_web_site/src/root_ns/core.clj +++ b/resources/leiningen/new/simple_web_site/src/root_ns/core.clj @@ -57,7 +57,7 @@ :start (let [{:keys [port bind] :or {port 8080 - bind "0.0.0.0"}} (:http-server config) + bind "0.0.0.0"}} (:http config) server (http-kit/run-server (as-> #'handler h (if (:dev? config) (wrap-reload h) h))