diff --git a/VERSION b/VERSION index 3eefcb9..7dea76e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.0 +1.0.1 diff --git a/src/com/latacora/replik8s/serve.clj b/src/com/latacora/replik8s/serve.clj index decf955..9df7518 100644 --- a/src/com/latacora/replik8s/serve.clj +++ b/src/com/latacora/replik8s/serve.clj @@ -135,17 +135,18 @@ (timbre/info "Starting new server on ports 3000 (HTTP) and 3443 (HTTPS)") (reset! server (run-jetty handler - {:port 3000 - :ssl? true - :ssl-port 3443 - :keystore (if keystore-url - ;; run from jar - keystore-temporary-path - ;; run from source - "resources/certificates/keystore.p12") - :keystore-type "PKCS12" - :key-password "" - :join? false}))))) + {:port 3000 + :ssl? true + :ssl-port 3443 + :keystore (if keystore-url + ;; run from jar + keystore-temporary-path + ;; run from source + "resources/certificates/keystore.p12") + :keystore-type "PKCS12" + :key-password "" + :join? false + :sni-host-check? false}))))) (comment (start-server))