2015-12-21 01:04:00 -06:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-12-21 16:41:55 -05:00
|
|
|
echo "Stopping the server..."
|
|
|
|
pkill gunicorn
|
2015-12-23 00:26:27 -06:00
|
|
|
sudo service nginx stop
|
2016-01-03 04:03:55 +00:00
|
|
|
tmux kill-session -t ctf 2> /dev/null
|
2015-12-21 16:41:55 -05:00
|
|
|
|
|
|
|
echo "Starting the server..."
|
2016-01-03 04:14:20 +00:00
|
|
|
cd /home/vagrant/server
|
2015-12-23 00:26:27 -06:00
|
|
|
sudo service nginx start
|
2016-01-03 04:14:20 +00:00
|
|
|
tmux new-session -s ctf -d 'gunicorn "app:app" -c /home/vagrant/scripts/gunicorn.py.ini'
|