This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-02-25
Channels
- # aleph (18)
- # announcements (7)
- # asami (18)
- # babashka (15)
- # babashka-sci-dev (79)
- # beginners (61)
- # calva (4)
- # clj-kondo (23)
- # cljfx (16)
- # cljs-dev (6)
- # clojure (63)
- # clojure-bay-area (3)
- # clojure-europe (33)
- # clojure-nl (1)
- # clojure-survey (4)
- # clojure-uk (5)
- # clojurescript (136)
- # conjure (1)
- # cursive (8)
- # datahike (7)
- # datalevin (1)
- # datomic (30)
- # emacs (10)
- # events (2)
- # figwheel (2)
- # fulcro (20)
- # google-cloud (1)
- # lsp (6)
- # luminus (4)
- # malli (5)
- # music (3)
- # nextjournal (1)
- # off-topic (9)
- # other-languages (3)
- # pathom (16)
- # polylith (34)
- # re-frame (14)
- # reagent (19)
- # releases (6)
- # sci (2)
- # shadow-cljs (33)
Hi all, relatively new to Luminus but I'm following the fantastic Web Dev with Clojure ebook. My colleague and I are working on testing an SSO integration locally and he needs localhost to serve https to test it out. Can anyone provide a pointer on how to config local SSL? He does have a valid cert for localhost.[companyname].com
which we locally configure (using /etc/hosts
) to point to localhost 127.0.0.1. Thanks in advance!
(defn jetty-server []
(run-jetty app {...
:ssl? true :ssl-port 3001
:keystore "keystore" :key-password "pwdpwd"}))
i have success with this setup
Thanks! Our app is using the default Undertow adapter so we're going to try to follow the config options listed here: https://github.com/luminus-framework/ring-undertow-adapter