166 lines
4.7 KiB
Python
166 lines
4.7 KiB
Python
import logging.config
|
||
import os
|
||
from django.utils.log import DEFAULT_LOGGING
|
||
|
||
APP_ENV = os.getenv('APP_ENV')
|
||
if APP_ENV == 'dev':
|
||
DEBUG = True
|
||
else:
|
||
DEBUG = False
|
||
|
||
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
||
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||
|
||
# SECURITY WARNING: keep the secret key used in production secret!
|
||
SECRET_KEY = 'nxnm3#&2tat_c2i6%$y74a)t$(3irh^gpwaleoja1kdv30fmcm'
|
||
|
||
ALLOWED_HOSTS = ['*']
|
||
|
||
# 不安全的内部初始密码,用于检验新密码
|
||
UN_SEC_PASSWORD = ['1qaz@WSX', '1234@Abc']
|
||
|
||
|
||
# 创建日志的路径
|
||
LOG_PATH = os.path.join(BASE_DIR, 'log')
|
||
# 如果地址不存在,则会自动创建log文件夹
|
||
if not os.path.isdir(LOG_PATH):
|
||
os.mkdir(LOG_PATH)
|
||
|
||
# Disable Django's logging setup
|
||
LOGGING_CONFIG = None
|
||
|
||
LOGLEVEL = os.environ.get('LOGLEVEL', 'info').upper()
|
||
|
||
logging.config.dictConfig({
|
||
'version': 1,
|
||
'disable_existing_loggers': False,
|
||
'formatters': {
|
||
'default': {
|
||
# exact format is not important, this is the minimum information
|
||
"format": "%(asctime)s %(module)s %(levelname)s -%(thread)d- %(message)s"
|
||
},
|
||
'django.server': DEFAULT_LOGGING['formatters']['django.server'],
|
||
},
|
||
'handlers': {
|
||
# console logs to stderr
|
||
'console': {
|
||
"level": "DEBUG",
|
||
'class': 'logging.StreamHandler',
|
||
'formatter': 'default',
|
||
},
|
||
'file': {
|
||
'level': "DEBUG",
|
||
'class': 'logging.handlers.RotatingFileHandler',
|
||
'filename': os.path.join(LOG_PATH, "all.log"),
|
||
'formatter': 'default',
|
||
'maxBytes': 1024 * 1024 * 50, # 日志大小 10M
|
||
'backupCount': 24, # 备份数为 2# 简单格式
|
||
'encoding': 'utf-8',
|
||
},
|
||
'django.server': DEFAULT_LOGGING['handlers']['django.server'],
|
||
},
|
||
'loggers': {
|
||
# default for all undefined Python modules
|
||
'': {
|
||
'level': LOGLEVEL,
|
||
'handlers': ['file'],
|
||
},
|
||
# Default runserver request logging
|
||
'django.server': DEFAULT_LOGGING['loggers']['django.server'],
|
||
},
|
||
})
|
||
|
||
|
||
# SESSION
|
||
# 只有在settings.SESSION_SAVE_EVERY_REQUEST 为True时才有效
|
||
SESSION_SAVE_EVERY_REQUEST = True
|
||
# 过期时间分钟
|
||
SESSION_COOKIE_AGE = 300
|
||
# False 会话cookie可以在用户浏览器中保持有效期。True:关闭浏览器,则Cookie失效。
|
||
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
|
||
# session使用的存储方式
|
||
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
|
||
|
||
INSTALLED_APPS = [
|
||
'django.contrib.auth',
|
||
'django.contrib.contenttypes',
|
||
'django.contrib.sessions',
|
||
'django.contrib.messages',
|
||
'django.contrib.staticfiles',
|
||
'resetpwd',
|
||
]
|
||
|
||
CACHES = {
|
||
'default': {
|
||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
||
'LOCATION': 'unique-snowflake',
|
||
}
|
||
}
|
||
|
||
MIDDLEWARE = [
|
||
'django.middleware.security.SecurityMiddleware',
|
||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||
'django.middleware.common.CommonMiddleware',
|
||
'django.middleware.csrf.CsrfViewMiddleware',
|
||
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||
'django.contrib.messages.middleware.MessageMiddleware',
|
||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||
]
|
||
|
||
ROOT_URLCONF = 'pwdselfservice.urls'
|
||
|
||
TEMPLATES = [
|
||
{
|
||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||
'DIRS': [os.path.join(BASE_DIR, 'templates')]
|
||
,
|
||
'APP_DIRS': True,
|
||
'OPTIONS': {
|
||
'context_processors': [
|
||
'django.template.context_processors.debug',
|
||
'django.template.context_processors.request',
|
||
'django.contrib.auth.context_processors.auth',
|
||
'django.contrib.messages.context_processors.messages',
|
||
],
|
||
},
|
||
},
|
||
]
|
||
|
||
WSGI_APPLICATION = 'pwdselfservice.wsgi.application'
|
||
|
||
# 514 66050是AD中账号被禁用的特定代码,这个可以在微软官网查到。
|
||
# 可能不是太准确,如果使用者能确定还有其它状态码,可以自行在此处添加
|
||
AD_ACCOUNT_DISABLE_CODE = [514, 66050]
|
||
|
||
AUTH_PASSWORD_VALIDATORS = [
|
||
{
|
||
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
||
},
|
||
{
|
||
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
||
},
|
||
{
|
||
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
||
},
|
||
{
|
||
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
||
},
|
||
]
|
||
|
||
LANGUAGE_CODE = 'zh-hans'
|
||
|
||
TIME_ZONE = 'Asia/Shanghai'
|
||
|
||
USE_I18N = True
|
||
|
||
USE_L10N = True
|
||
|
||
USE_TZ = True
|
||
|
||
STATIC_URL = '/static/'
|
||
# STATIC_ROOT = 'static'
|
||
|
||
STATICFILES_DIRS = [
|
||
os.path.join(BASE_DIR, 'static'),
|
||
]
|