Created
January 14, 2010 00:19
-
-
Save jbalogh/276727 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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