6 lines
171 B
Bash
6 lines
171 B
Bash
#!/bin/bash
|
|
OLDDIR=$PWD
|
|
cd /root/www
|
|
twistd --pidfile=/root/webserver.pid web --https=5000 --wsgi app.app -c /root/ssl/poconsole.crt -k /root/ssl/poconsole.key
|
|
cd $OLDDIR
|