157 lines
4.4 KiB
Python
157 lines
4.4 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
|
||
from conf.local_settings_dev import REDIS_LOCATION, REDIS_PASSWORD
|
||
else:
|
||
DEBUG = False
|
||
from conf.local_settings import REDIS_LOCATION, REDIS_PASSWORD
|
||
|
||
# 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 = ['*']
|
||
|
||
# 创建日志的路径
|
||
LOG_PATH = os.path.join(BASE_DIR, '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": "ERROR",
|
||
'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,
|
||
'backupCount': 24,
|
||
'encoding': 'utf-8',
|
||
},
|
||
'django.server': DEFAULT_LOGGING['handlers']['django.server'],
|
||
},
|
||
'loggers': {
|
||
# default for all undefined Python modules
|
||
'': {
|
||
'level': LOGLEVEL,
|
||
'handlers': ['console', 'file'],
|
||
},
|
||
# Default runserver request logging
|
||
'django.server': DEFAULT_LOGGING['loggers']['django.server'],
|
||
},
|
||
})
|
||
|
||
|
||
INSTALLED_APPS = [
|
||
'django.contrib.contenttypes',
|
||
'django.contrib.sessions',
|
||
'django.contrib.messages',
|
||
'django.contrib.staticfiles',
|
||
'resetpwd',
|
||
]
|
||
|
||
|
||
MIDDLEWARE = [
|
||
'django.middleware.security.SecurityMiddleware',
|
||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||
'django.middleware.common.CommonMiddleware',
|
||
'django.middleware.csrf.CsrfViewMiddleware',
|
||
'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.messages.context_processors.messages',
|
||
],
|
||
},
|
||
},
|
||
]
|
||
|
||
WSGI_APPLICATION = 'pwdselfservice.wsgi.application'
|
||
|
||
CACHES = {
|
||
"default": {
|
||
"BACKEND": "django_redis.cache.RedisCache",
|
||
"LOCATION": "redis://{}/1".format(REDIS_LOCATION),
|
||
"OPTIONS": {
|
||
"CLIENT_CLASS": "django_redis.client.DefaultClient",
|
||
"PASSWORD": REDIS_PASSWORD,
|
||
"COMPRESSOR": "django_redis.compressors.zlib.ZlibCompressor",
|
||
"IGNORE_EXCEPTIONS": True,
|
||
}
|
||
}
|
||
}
|
||
|
||
# 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'),
|
||
]
|