.. _enable_django_admin: ============ 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 :doc:`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. .. code-block:: python ENABLE_DJANGO_ADMIN = True DJANGO_ADMIN_URL_PREFIX = 'administrator/' After editing the ``settings.py`` file, you must restart all the ``fleio`` services (see :ref:`restart-fleio`).