How can I let the R Rook webserver allow remote connections ?
> library(Rook)
Loading required package: tools
Loading required package: brew
> s <- Rhttpd$new()
> s$start()
done
Server started on host 127.0.0.1 and port 18445 . App urls are:
http://127.0.0.1:18445/custom/RookTest
> s$browse(1)
This works very well locally but it does not accept connections from remote computers.
FOUND A SOLUTION:
use s$start( listen = "77.77.66.77" )
instead of s$start()
where 77.77.66.77
is the IP address of your computer ( on the network ) .