Skip to content

Instantly share code, notes, and snippets.

@gurunars
Last active April 13, 2016 10:19
Show Gist options
  • Save gurunars/2a529892776ce8dc6a916871f025f6a3 to your computer and use it in GitHub Desktop.
Save gurunars/2a529892776ce8dc6a916871f025f6a3 to your computer and use it in GitHub Desktop.
Apache Python wsgi app config
<VirtualHost *:80>
ServerName HOSTNAME.DOMAIN
WSGIDaemonProcess threads=5
WSGIScriptAlias / /PATH/TO/WSGI/DEFINITION/webapp.wsgi
<Directory /PATH/TO/WSGI/DEFINITION>
Order deny,allow
Require all granted
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment