diff options
author | B. Stack <bgstack15@gmail.com> | 2023-06-24 08:36:02 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2023-06-24 08:36:02 -0400 |
commit | e1e3faaf7f88bad2215890a07aa015bbf12d6301 (patch) | |
tree | a696bcfc37ce7de2317c49b1cbbd806ff6e379d3 /instance | |
parent | display external-auth on user for admin edit-user page (diff) | |
download | newspipe-e1e3faaf7f88bad2215890a07aa015bbf12d6301.tar.gz newspipe-e1e3faaf7f88bad2215890a07aa015bbf12d6301.tar.bz2 newspipe-e1e3faaf7f88bad2215890a07aa015bbf12d6301.zip |
add ldap auth
Diffstat (limited to 'instance')
-rw-r--r-- | instance/config.py | 4 | ||||
-rw-r--r-- | instance/sqlite.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/instance/config.py b/instance/config.py index af5fe9b9..81453d84 100644 --- a/instance/config.py +++ b/instance/config.py @@ -73,7 +73,7 @@ LOG_PATH = "./var/newspipe.log" SELF_REGISTRATION = True # Ldap, optional -LDAP_ENABLED = True +LDAP_ENABLED = False LDAP_URI = "ldaps://ipa.internal.com:636" LDAP_USER_BASE = "cn=users,cn=accounts,dc=ipa,dc=internal,dc=com" LDAP_GROUP_BASE = "cn=groups,cn=accounts,dc=ipa,dc=internal,dc=com" @@ -83,5 +83,5 @@ LDAP_USER_ATTRIB_MEMBEROF = "memberof" LDAP_GROUP_DISPLAY_ATTRIB = "cn" LDAP_BIND_DN = "uid=sampleuser,cn=users,cn=accounts,dc=ipa,dc=internal,dc=com" LDAP_BIND_PASSWORD = "examplepassword" -# Additional filter to restrict user lookup. If not equivalent to False, will be logical-anded to the user-match-attribute search filter. +# Additional filter to restrict user lookup. If not equivalent to False (e.g., undefined), will be logical-anded to the user-match-attribute search filter. LDAP_FILTER = "(memberOf=cn=newspipe-users,cn=groups,cn=accounts,dc=ipa,dc=internal,dc=com)" diff --git a/instance/sqlite.py b/instance/sqlite.py index abde387a..2fd2bed3 100644 --- a/instance/sqlite.py +++ b/instance/sqlite.py @@ -66,7 +66,7 @@ SELF_REGISTRATION = True SQLALCHEMY_TRACK_MODIFICATIONS = False # Ldap, optional -LDAP_ENABLED = True +LDAP_ENABLED = False LDAP_URI = "ldaps://ipa.internal.com:636" LDAP_USER_BASE = "cn=users,cn=accounts,dc=ipa,dc=internal,dc=com" LDAP_GROUP_BASE = "cn=groups,cn=accounts,dc=ipa,dc=internal,dc=com" @@ -76,5 +76,5 @@ LDAP_USER_ATTRIB_MEMBEROF = "memberof" LDAP_GROUP_DISPLAY_ATTRIB = "cn" LDAP_BIND_DN = "uid=sampleuser,cn=users,cn=accounts,dc=ipa,dc=internal,dc=com" LDAP_BIND_PASSWORD = "examplepassword" -# Additional filter to restrict user lookup. If not equivalent to False, will be logical-anded to the user-match-attribute search filter. +# Additional filter to restrict user lookup. If not equivalent to False (e.g., undefined), will be logical-anded to the user-match-attribute search filter. LDAP_FILTER = "(memberOf=cn=newspipe-users,cn=groups,cn=accounts,dc=ipa,dc=internal,dc=com)" |