I haven’t been able to find a good guide for deploying without immutant/web without WildFly. Any pointers? Should immutant be deploying behind something like nginx, or listening on port 80 itself?
the standard approach is the same for any clojure jar-based app - most folks put nginx up front. that makes it easy to have a hot backup, or do show a maintenance page when redeploying the app, etc
That makes sense. What’s the packaging up story? Any docs I’m missing? Looking for something like lein uberjar
(or preferably boot uber jar
). What’s the entrypoint?
either of those would work - you would just need to specify a :main, and from that main call immutant.web/run
see http://immutant.org/documentation/current/apidoc/guide-installation.html#h5361
Thank you!
my pleasure!