Skip to content

Instantly share code, notes, and snippets.

@keokilee
Created December 27, 2010 22:04
Show Gist options
  • Save keokilee/756611 to your computer and use it in GitHub Desktop.
Save keokilee/756611 to your computer and use it in GitHub Desktop.
Gist of Apache WSGI config for Makahiki
<VirtualHost 127.0.0.1:8100>
WSGIDaemonProcess kukui-cup-pinax python-path=/pinax-env/lib/python2.6/site-packages user=user group=staff home=/Users/user/kukui-cup-pinax
WSGIProcessGroup kukui-cup-pinax
ServerAdmin user@hawaii.edu
DocumentRoot "/Users/user/kukui-cup-pinax/"
WSGIScriptAlias / "/Users/user/kukui-cup-pinax/deploy/pinax.wsgi"
<Directory "/Users/user/kukui-cup-pinax/deploy">
Allow from all
Order allow,deny
</Directory>
ErrorLog "/private/var/log/apache2/kukui-cup-pinax-error_log"
CustomLog "/private/var/log/apache2/kukui-cup-pinax-access_log" common
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment