Fork me on GitHub
#immutant
<
2015-09-18
>
jgdavey18:09:24

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?

tcrawley18:09:04

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

jgdavey18:09:06

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?

tcrawley18:09:52

either of those would work - you would just need to specify a :main, and from that main call immutant.web/run

jgdavey18:09:01

Thank you!

tcrawley18:09:41

my pleasure!