Skip to content

Instantly share code, notes, and snippets.

@gjask
Created March 3, 2016 15:38
Show Gist options
  • Save gjask/3a63edda41d07ad8e06b to your computer and use it in GitHub Desktop.
Save gjask/3a63edda41d07ad8e06b to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
ServerAdmin admin@skrle.cz
DocumentRoot /var/www/flask/lillyleague
ServerName atea.skrle.cz
WSGIDaemonProcess lillyleague user=jask group=jask threads=1 home=/var/www/flask/lillyleague
WSGIScriptAlias / /var/www/flask/lillyleague/wsgi.py
WSGIPassAuthorization On
<Directory /var/www/flask/lillyleague>
WSGIProcessGroup lillyleague
WSGIApplicationGroup %{GLOBAL}
Order deny,allow
Allow from all
</Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment