antunderwood / flask_app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Requires following python steps

  • virtualenv env
  • env/bin/pip install -r requirements.txt

Add the following to apache2.conf

<VirtualHost *:80>
    ServerName flask_app.local
    WSGIDaemonProcess flask_app user=anthony group=anthony threads=5
    WSGIScriptAlias / /var/www/flask_app/flask_app.wsgi
    WSGIPassAuthorization On

    <Directory /var/www/myapp>
        WSGIProcessGroup flask_app
        WSGIApplicationGroup %{GLOBAL}
        Order deny,allow
        Allow from all
    </Directory>
</VirtualHost>

About


Languages

Language:Python 98.1%Language:CSS 1.9%