Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1
23 changes: 12 additions & 11 deletions src/com/latacora/replik8s/serve.clj
Original file line number Diff line number Diff line change
Expand Up @@ -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))