Created
June 26, 2013 21:56
-
-
Save SpencerCooley/5872123 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
<VirtualHost *:80> | |
ServerName nodeline.com | |
WSGIApplicationGroup %{GLOBAL} | |
WSGIPassAuthorization On | |
WSGIDaemonProcess pyramid user=main group=main processes=1 \ | |
threads=4 \ | |
python-path=/home/main/modwsgi/env/lib/python2.6/site-packages | |
WSGIScriptAlias /myapp /home/main/modwsgi/env/pyramid.wsgi | |
<Directory /home/main/modwsgi/env> | |
WSGIProcessGroup pyramid | |
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