Skip to content

Instantly share code, notes, and snippets.

@whittlem
Created August 19, 2021 22:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whittlem/6f6f646cdddb3211cab7b2a166e7faee to your computer and use it in GitHub Desktop.
Save whittlem/6f6f646cdddb3211cab7b2a166e7faee to your computer and use it in GitHub Desktop.
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