Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bazadactyl/266343d5803c8d92e007ef5799b162de to your computer and use it in GitHub Desktop.
Save bazadactyl/266343d5803c8d92e007ef5799b162de to your computer and use it in GitHub Desktop.
Apache Configuration
# Settings
ServerName www.projectlovelace.net
## Default overrides
ServerSignature Off
ServerTokens Prod
Timeout 30
<VirtualHost *:80>
WSGIDaemonProcess www.projectlovelace.net python-path=/usr/local/www/apache24/data/lovelace-website/src:/usr/local/www/apache24/data/lovelace-website/env/lib/python3.6/site-packages/
WSGIProcessGroup www.projectlovelace.net
WSGIScriptAlias / /usr/local/www/apache24/data/lovelace-website/src/lovelace/wsgi.py
Alias /static /usr/local/www/apache24/data/lovelace-website/src/prod_static
<Directory /usr/local/www/apache24/data/lovelace-website/src/prod_static>
Require all granted
</Directory>
<Directory /usr/local/www/apache24/data/lovelace-website/src/lovelace>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment