Skip to content

Instantly share code, notes, and snippets.

@SpencerCooley
Created June 26, 2013 21:56
Show Gist options
  • Save SpencerCooley/5872123 to your computer and use it in GitHub Desktop.
Save SpencerCooley/5872123 to your computer and use it in GitHub Desktop.
<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