I connect to my server via ssh that has erlang and cowboy installed on it for running my webpage.
ssh root@my.ip.adress
I then start up my webapp by doing;
./_rel/web_server_example/bin/web_server_example console
Which leaves me at a final line containing;
(web_server_example@127.0.0.1)1>
the erlang prompt. Now I need both the server and my home computer that is connected to it, because if I close the terminal it stops the erlang program on the server. How can I keep the program running and have my home computer off?