mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-23 00:38:39 +00:00
* [Update] 修改 success message, 添加资产组时可以添加资产 * [Update] system user form add label * [Update] set default cluster * [Update] 修改一些翻译 * [Bugfix] 修复重置密码bug * [Bugfix] 默认default cluster * [Bugfix] 用户添加报错 * 修改tab样式 * [Bugfix] 修复了一些显示上的bug * 修复全选按钮在搜索后仍然选择全部的问题 * [Bugfix] 修复以下bug 1. 查看执行历史异常 2. 用户授权资产页显示message * [Update] api 返回platform, 并增加web terminal nav * [Feature] 添加setting页面 * [Feature] 添加basic settings * [Update] 修改翻译 * [Update] 修改config * [Update] 启动加载common setting * [Bugfix] 修复cluster创建的bug * [Bugfix] 修复title显示Jumpserver * [Bugfix] setting tables not found * [Bugfix] settings add option * [Feature] 添加后端paging * [Bugfix] 资产列表选择别的页会报错 * [Update] check all 只选择当前页面 * [Bugfix] user login ip * [Bugfix] for login ip * [Bugfix] 修复资产列表显示bug * [Remove] labels * [Bugfix] task运行失败,因为tasks没有设置 * [Bugfix] 读取不到prefix * [Change] 修改部分翻译 * [Update] 启用ldap移动位置 * [Update] 修改翻译 * Update README.md
82 lines
2.1 KiB
Python
82 lines
2.1 KiB
Python
"""
|
|
jumpserver.config
|
|
~~~~~~~~~~~~~~~~~
|
|
|
|
Jumpserver project setting file
|
|
|
|
:copyright: (c) 2014-2017 by Jumpserver Team
|
|
:license: GPL v2, see LICENSE for more details.
|
|
"""
|
|
import os
|
|
|
|
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
|
|
class Config:
|
|
# Use it to encrypt or decrypt data
|
|
# 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'
|
|
|
|
# Django security setting, if your disable debug model, you should setting that
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
# Development env open this, when error occur display the full process track, Production disable it
|
|
DEBUG = True
|
|
|
|
# DEBUG, INFO, WARNING, ERROR, CRITICAL can set. See https://docs.djangoproject.com/en/1.10/topics/logging/
|
|
LOG_LEVEL = 'DEBUG'
|
|
LOG_DIR = os.path.join(BASE_DIR, 'logs')
|
|
|
|
# Database setting, Support sqlite3, mysql, postgres ....
|
|
# See https://docs.djangoproject.com/en/1.10/ref/settings/#databases
|
|
|
|
# SQLite setting:
|
|
DB_ENGINE = 'sqlite3'
|
|
DB_NAME = os.path.join(BASE_DIR, 'data', 'db.sqlite3')
|
|
|
|
# MySQL or postgres setting like:
|
|
# DB_ENGINE = 'mysql'
|
|
# DB_HOST = '127.0.0.1'
|
|
# DB_PORT = 3306
|
|
# DB_USER = 'root'
|
|
# DB_PASSWORD = ''
|
|
# DB_NAME = 'jumpserver'
|
|
|
|
# When Django start it will bind this host and port
|
|
# ./manage.py runserver 127.0.0.1:8080
|
|
HTTP_BIND_HOST = '0.0.0.0'
|
|
HTTP_LISTEN_PORT = 8080
|
|
|
|
# Use Redis as broker for celery and web socket
|
|
REDIS_HOST = '127.0.0.1'
|
|
REDIS_PORT = 6379
|
|
REDIS_PASSWORD = ''
|
|
BROKER_URL = 'redis://%(password)s%(host)s:%(port)s/3' % {
|
|
'password': REDIS_PASSWORD,
|
|
'host': REDIS_HOST,
|
|
'port': REDIS_PORT,
|
|
}
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def __getattr__(self, item):
|
|
return None
|
|
|
|
|
|
class DevelopmentConfig(Config):
|
|
pass
|
|
|
|
|
|
class TestConfig(Config):
|
|
pass
|
|
|
|
|
|
class ProductionConfig(Config):
|
|
pass
|
|
|
|
|
|
# Default using Config settings, you can write if/else for different env
|
|
config = DevelopmentConfig()
|
|
|