how can I start a kestrel server running asp.net 5 in the background on ubuntu.
Usually you kick start the server by typing dnx web
but this will start a process and you can't go back to shell unless you stop it by typing Ctrl+c
How can I start it in the background and return back to shell? also how to stop it once it is started in the background?
Is there a way to make this start once you start the ubuntu server? like a service for example?