I'm using Docker to install Odoo on my Linux Centos server. I need to use LDAP so I downloaded the Authentication via LDAP and saved the addon on my server in the directory /mnt/extra-addons/auth_ldap. When I started the Odoo container in Docker I pointed a Docker volume at the addon directory. Below is the command I used.
docker run -v /path/to/addons:/mnt/extra-addons/auth_ldap -p 8069:8069 --name odoo
--link db:db -t odoo
The instructions Say "After installing this module, you need to configure the LDAP parameters in the Configuration tab of the Company details". But I can't find the LDAP settings in the company configuration tab.
Where is the configuration tab or I'm I missing something else?