python manage.py runserver 0.0.0.0:8000
how to make this command running if terminal close
for now i use screen and it works any other way to do that? i mean for production how to link it to ngix or apahce in ubuntu server?
You could try to run your Python script with the nohup command infront. Nohup will make the script immume to hangups.
example
nohup python myscript.py &
Your output will be send to nohup.out.
Very nice alternative to screen is program called tmux. I use it constantly for daily basis.
To dump process into same terminal, runcd any command you'd like, then:
bg - it will dump process to the background