Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
NAME="hello_app" # Name of the application
DJANGODIR=/webapps/hello_django/hello # Django project directory
SOCKFILE=/webapps/hello_django/run/gunicorn.sock # we will communicte using this unix socket
USER=hello # the user to run as
GROUP=webapps # the group to run as
NUM_WORKERS=3 # how many worker processes should Gunicorn spawn
DJANGO_SETTINGS_MODULE=hello.settings # which settings file should Django use
DJANGO_WSGI_MODULE=hello.wsgi # WSGI module name
@rnevius
rnevius / wp-installer.sh
Created October 11, 2014 16:37
Shell / SSH WordPress Installer
#!/bin/bash -e
clear
echo ""
echo "============================================="
echo "# #"
echo "# Welcome to the WordPress Installer #"
echo "# #"
echo "============================================="
echo ""