bdy sandbox endpoint add
$bdy sandbox endpoint add|create [options] <identifier>
Add an endpoint. Target server must listen on 0.0.0.0, otherwise it will be unreachable
Examples
create http endpoint on port 80 (http server must listen on 0.0.0.0)bdy sb ep create sandbox-identifier -e 80$
create http server and serve files from sandbox directorybdy sb ep create sandbox-identifier -s /path/to/dir$
create tcp endpoint on port 22 with name (tcp server must listen on 0.0.0.0)bdy sb ep create sandbox-identifier -t TCP -e 22 -n test$