Docker LDAP config issues #1601
Replies: 1 comment
-
|
The only way that I could fix this on 4.x has to do with the settings.py file - i had to modify it (i'm running this in an LXC under proxmox) nano /opt/netbox/netbox/netbox/settings.py The block at line 683 and add the LDAP equivalent right after it: Load all SOCIAL_AUTH_* settings from the user configurationfor param in dir(configuration): Load all AUTH_LDAP_* settings from the user configurationfor param in dir(configuration): Then also forward the AUTHENTICATION_BACKENDS setting, since that's also defined in your configuration.py but won't be picked up automatically. Check if it's already handled: grep -n "AUTHENTICATION_BACKENDS" /opt/netbox/netbox/netbox/settings.py |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I've gone pretty much through all the posts on issues on github/reddit/google, have deployed via the official guide from here version "NetBox Community v4.4.5-Docker-3.4.1".
Cannot see any warnings or nothing in the logs as well :(
Has anyone got a working solution please?
Thank you very much in advance :)
This is my docker-compose.override.yml file:
Beta Was this translation helpful? Give feedback.
All reactions