Step 1: Choose the right (fork of the) plugin
LDAP authentication is only possible using a plugin. I would recommend using:
taiga-contrib-ldap-auth-enhanced
This plugin is a fork of an older version of the plugin (
Monogramm/taiga-contrib-ldap-auth-ext) which in turn is a fork of
ensky/taiga-contrib-ldap-auth.
Further resources
taiga-contrib-ldap-auth-enhanced is my personal fork (formerly known as taiga-contrib-ldap-auth-ext-2) of the Monogramm plugin. In the past, I have contributed code to the Monogramm plugin, and would happily do so now again; however, the Monogramm plugin has not seen any activity for over a year (and at least one unmerged PR).
The Monogramm plugin is completely fine, so feel free to continue using it if you like, however, as of 2025, you might receive more updates using my fork.
Some Community Contributions
taiga-contrib-ldap-auth-exton PyPI
Comment by the Monogramm plugin maintainer: How mergeability of contributions is ensured (sadly, this turned out to not age super well).
Step 2: Install and configure the plugin in taiga-back
I used the dockerized 30 min setup as described in the forum. In this case, you need to adjust the taiga-back and taiga-front images. We start with the installation and configuration of the plugin in taiga-back.
They are described in more detail in the pluginās README, please refer to this document:
Plugin installation and configuration of taiga-back
Use the plugin directly from Git instead
If you want to use the plugin directly from Git (latest, but maybe unstable builds), you can also follow the guide mentioned above, but need to make the following changes to the Dockerfile:
-
Replace the following line:
RUN pip install taiga-contrib-ldap-auth-enhancedwith:
RUN pip install git+https://github.com/TuringTux/taiga-contrib-ldap-auth-enhanced.git -
Before the
RUN pip installline, insert:RUN apt-get update \ && apt-get install -y git \ && rm -rf /var/lib/apt/lists/* -
After the
RUN pip installline, insert:RUN apt-get purge -y git \ && apt-get autoremove -y
Further resources
Step 3: Configure taiga-front
taiga-front needs to be configured to use the ldap installation method. This is also described in the README.
(Even) further reading
While writing this post and installing LDAP, I stumbled upon the following resources that might be helpful:
Taiga 6: How to enable LDAP based login? on Google Groups
Feature request for LDAP support in the official images on GitHub




