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
f6056426
Commit
f6056426
authored
Jan 12, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改config
parent
d48f8dce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
42 deletions
+0
-42
config_example.py
config_example.py
+0
-42
No files found.
config_example.py
View file @
f6056426
...
...
@@ -17,14 +17,6 @@ class Config:
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY
=
os
.
environ
.
get
(
'SECRET_KEY'
)
or
'2vym+ky!997d5kkcc64mnz06y1mmui3lut#(^wd=
%
s_qj$1
%
x'
# How many line display every page if using django pager, default 25
DISPLAY_PER_PAGE
=
25
# It's used to identify your site, When we send a create mail to user, we only know login url is /login/
# But we should know the absolute url like: http://jms.jumpserver.org/login/, so SITE_URL is
# HTTP_PROTOCOL://HOST[:PORT]
SITE_URL
=
'http://localhost'
# Django security setting, if your disable debug model, you should setting that
ALLOWED_HOSTS
=
[
'*'
]
...
...
@@ -65,40 +57,6 @@ class Config:
'port'
:
REDIS_PORT
,
}
# Api token expiration when create, Jumpserver refresh time when request arrive
TOKEN_EXPIRATION
=
3600
# Session and csrf domain settings
SESSION_COOKIE_AGE
=
3600
*
24
# Email SMTP setting, we only support smtp send mail
EMAIL_HOST
=
'smtp.163.com'
EMAIL_PORT
=
25
EMAIL_HOST_USER
=
''
EMAIL_HOST_PASSWORD
=
''
# Caution: Some SMTP server using `Authorization Code` except password
EMAIL_USE_SSL
=
True
if
EMAIL_PORT
==
465
else
False
EMAIL_USE_TLS
=
True
if
EMAIL_PORT
==
587
else
False
EMAIL_SUBJECT_PREFIX
=
'[Jumpserver] '
CAPTCHA_TEST_MODE
=
False
# You can set jumpserver usage url here, that when user submit wizard redirect to
USER_GUIDE_URL
=
''
# LDAP Auth settings
AUTH_LDAP
=
False
AUTH_LDAP_SERVER_URI
=
'ldap://localhost:389'
AUTH_LDAP_BIND_DN
=
'cn=admin,dc=jumpserver,dc=org'
AUTH_LDAP_BIND_PASSWORD
=
''
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"
,
"email"
:
"mail"
}
AUTH_LDAP_START_TLS
=
False
def
__init__
(
self
):
pass
...
...
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