Skip to content

Instantly share code, notes, and snippets.

@jbalogh
Created January 14, 2010 00:19
Show Gist options
  • Select an option

  • Save jbalogh/276727 to your computer and use it in GitHub Desktop.

Select an option

Save jbalogh/276727 to your computer and use it in GitHub Desktop.
# WSGI
LoadModule wsgi_module modules/mod_wsgi.so
WSGIPythonHome /Users/jeff/.virtualenvs/baseline
<VirtualHost *:80>
ServerName 127.0.0.1
WSGIScriptAlias / /Users/jeff/dev/zamboni/wsgi/zamboni.wsgi
WSGIDaemonProcess zamboni processes=8 threads=10 \
python-path=/Users/jeff/.virtualenvs/zamboni/lib/python2.6/site-packages
WSGIProcessGroup zamboni
<Directory /Users/jeff/dev/zamboni/wsgi>
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment