Skip to content

Instantly share code, notes, and snippets.

@whittlem
Created August 19, 2021 22:39
Embed
What would you like to do?
apache-wsgi-vhost.conf
<VirtualHost *:80>
ServerName localhost
WSGIDaemonProcess html user=apache group=apache threads=2
WSGIScriptAlias / /var/www/html/wsgi.py
<Directory /var/www/html>
Require all granted
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment