@ -24,7 +24,6 @@ Since Flask’s built-in server is not fit for live traffic, you need another WS
2. Install **mod_wsgi** compiled with python3: `SUDO APT-GET INSTALL LIBAPACHE2-MOD-WSGI-PY3`
3. Enable mod_wsgi: `SUDO A2ENMOD WSGI`
4. Create a config file for your website:
#### Creating `your_app.conf`
This file contains the paths to all the important Files needed for Apache2 to run your Python3 scripts. The minimal config file for a Flask-app, with static files (Images, CSS) present looks like:
```
@ -67,4 +66,20 @@ Replace `your_app` with the appropriate name of your website and folders. If you
> |-------------------------main.py
> |------------------------- (…)
7. ASD
7. Create a wsgi script, that can start your Python app in your virtualenv: