1 2 3 4 5 6 7 8 9 10 |
#!/bin/bash # Copyright 2012, 2013 Marco Ceppi, Canonical Ltd. This software is # licensed under the GNU Affero General Public License version 3 (see # the file LICENSE). set -eux : ${PROJECT_DIR:=$HOME/charmworld} $PROJECT_DIR/bin/gunicorn_paster -D -p $HOME/var/appserver.pid \ --workers=3 --max-requests=250 $PROJECT_DIR/production.ini |