Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
91601cce
Commit
91601cce
authored
Oct 12, 2017
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Feature] Support multiple ou search
parent
a4fa15a7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
settings.py
apps/jumpserver/settings.py
+11
-3
config_example.py
config_example.py
+2
-1
No files found.
apps/jumpserver/settings.py
View file @
91601cce
...
...
@@ -13,8 +13,12 @@ https://docs.djangoproject.com/en/1.10/ref/settings/
import
os
import
sys
import
ldap
from
django_auth_ldap.config
import
LDAPSearch
from
django.urls
import
reverse_lazy
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))
PROJECT_DIR
=
os
.
path
.
dirname
(
BASE_DIR
)
...
...
@@ -232,14 +236,13 @@ LOGGING = {
},
'django_auth_ldap'
:
{
'handlers'
:
[
'console'
,
'ansible_logs'
],
'level'
:
LOG_LEVEL
,
'level'
:
"INFO"
,
}
}
}
# Internationalization
# https://docs.djangoproject.com/en/1.10/topics/i18n/
LANGUAGE_CODE
=
'en-us'
TIME_ZONE
=
'Asia/Shanghai'
...
...
@@ -312,7 +315,12 @@ if CONFIG.AUTH_LDAP:
AUTH_LDAP_SERVER_URI
=
CONFIG
.
AUTH_LDAP_SERVER_URI
AUTH_LDAP_BIND_DN
=
CONFIG
.
AUTH_LDAP_BIND_DN
AUTH_LDAP_BIND_PASSWORD
=
CONFIG
.
AUTH_LDAP_BIND_PASSWORD
AUTH_LDAP_USER_DN_TEMPLATE
=
CONFIG
.
AUTH_LDAP_USER_DN_TEMPLATE
# AUTH_LDAP_USER_DN_TEMPLATE = CONFIG.AUTH_LDAP_USER_DN_TEMPLATE
AUTH_LDAP_USER_SEARCH
=
LDAPSearch
(
CONFIG
.
AUTH_LDAP_SEARCH_OU
,
ldap
.
SCOPE_SUBTREE
,
CONFIG
.
AUTH_LDAP_SEARCH_FILTER
)
AUTH_LDAP_START_TLS
=
CONFIG
.
AUTH_LDAP_START_TLS
AUTH_LDAP_USER_ATTR_MAP
=
CONFIG
.
AUTH_LDAP_USER_ATTR_MAP
...
...
config_example.py
View file @
91601cce
...
...
@@ -100,7 +100,8 @@ class Config:
AUTH_LDAP_SERVER_URI
=
'ldap://localhost:389'
AUTH_LDAP_BIND_DN
=
'cn=admin,dc=jumpserver,dc=org'
AUTH_LDAP_BIND_PASSWORD
=
''
AUTH_LDAP_USER_DN_TEMPLATE
=
"uid=
%(user)
s,ou=people,dc=jumpserver,dc=org"
AUTH_LDAP_SEARCH_OU
=
'ou=tech,dc=jumpserver,dc=org'
AUTH_LDAP_SEARCH_FILTER
=
'(cn=
%(user)
s)'
AUTH_LDAP_USER_ATTR_MAP
=
{
"username"
:
"cn"
,
"name"
:
"sn"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment