Created
August 19, 2021 22:39
-
-
Save whittlem/6f6f646cdddb3211cab7b2a166e7faee to your computer and use it in GitHub Desktop.
apache-wsgi-vhost.conf
This file contains 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 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