Re: remote nrepl/gorilla + port forwarding

2015-01-15 Thread Sam Raker
Oh genius. Thanks! (Also thanks for pointing out the MASSIVE security hole I was trying to create for myself.) On Thursday, January 15, 2015 at 6:19:04 AM UTC-5, Jony Hudson wrote: > > Hi Sam, > > I think `lein gorilla :ip 0.0.0.0 :port 5` should work (it works on > my machine). And if your

Re: remote nrepl/gorilla + port forwarding

2015-01-15 Thread Jony Hudson
Hi Sam, I think `lein gorilla :ip 0.0.0.0 :port 5` should work (it works on my machine). And if your router is forwarding 5 to that machine correctly then it should be accessible from outside. `lein gorilla :ip ROUTER_IP :port 5` shouldn't work because ROUTER_IP isn't an IP address

remote nrepl/gorilla + port forwarding

2015-01-14 Thread Sam Raker
I've got a computer with a bunch of clojure code on it, sitting at home on my home network. I've configured my router to forward port 5 on that computer to port 5 on the router itself, so that, at least in theory, ROUTER_IP:5 should be forwarded to THAT_COMPUTER:5, if that makes