Django admin

Django admin can be accessed at your-fleio-installation.com/backend/admin

By default django admin is disabled but you can enable it changing the ENABLE_DJANGO_ADMIN variable in your settings.py file. You can also change the URL path for django admin from “admin/” (default) to something else using the DJANGO_ADMIN_URL_PREFIX variable. For example your settings may look like this:

Warning

Enabling django admin in production will publicly expose more information regarding your Fleio installation and this might increase the security risks. We recommend to limit django admin only to your trusted IPs or to enable it just when you need to access it. Please note that django admin does not support 2fa.

ENABLE_DJANGO_ADMIN = True
DJANGO_ADMIN_URL_PREFIX = 'administrator/'

After editing the settings.py file, you must restart all the fleio services (see Restarting Fleio).