2020-12-12 19:37:20 +01:00
|
|
|
################################################################################
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Please do not modify this file, it will be reset at the next update.
|
|
|
|
# You can edit the file __FINAL_HOME_PATH__/local_settings.py and add/modify the settings you need.
|
|
|
|
# The parameters you add in local_settings.py will overwrite these,
|
|
|
|
# but you can use the options and documentation in this file to find out what can be done.
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
from pathlib import Path as __Path
|
|
|
|
|
|
|
|
from for_runners_project.settings.base import * # noqa
|
|
|
|
|
|
|
|
DEBUG = False
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
FINAL_HOME_PATH = __Path('__FINAL_HOME_PATH__') # /opt/yunohost/$app
|
|
|
|
assert FINAL_HOME_PATH.is_dir(), f'Directory not exists: {FINAL_HOME_PATH}'
|
|
|
|
|
|
|
|
FINAL_WWW_PATH = __Path('__FINAL_WWW_PATH__') # /var/www/$app
|
|
|
|
assert FINAL_WWW_PATH.is_dir(), f'Directory not exists: {FINAL_WWW_PATH}'
|
|
|
|
|
|
|
|
LOG_FILE = __Path('__LOG_FILE__') # /var/log/$app/django-for-runners.log
|
|
|
|
assert LOG_FILE.is_file(), f'File not exists: {LOG_FILE}'
|
|
|
|
|
|
|
|
PATH_URL = '__PATH_URL__' # $YNH_APP_ARG_PATH
|
|
|
|
PATH_URL = PATH_URL.strip('/')
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
ROOT_URLCONF = 'ynh_urls' # /opt/yunohost/django-for-runners/ynh_urls.py
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2020-12-22 18:55:57 +01:00
|
|
|
# Keep ModelBackend around for per-user permissions and superuser
|
|
|
|
AUTHENTICATION_BACKENDS = (
|
|
|
|
'axes.backends.AxesBackend', # AxesBackend should be the first backend!
|
2020-12-12 19:37:20 +01:00
|
|
|
|
2020-12-22 18:55:57 +01:00
|
|
|
# Authenticate via SSO and nginx 'HTTP_REMOTE_USER' header:
|
|
|
|
'ynh_authenticate.RemoteUserBackend',
|
2020-12-12 19:37:20 +01:00
|
|
|
|
2020-12-22 18:55:57 +01:00
|
|
|
# Fallback to normal Django model backend:
|
|
|
|
'django.contrib.auth.backends.ModelBackend',
|
|
|
|
)
|
|
|
|
LOGIN_REDIRECT_URL = None
|
|
|
|
LOGIN_URL = '/yunohost/sso/'
|
|
|
|
LOGOUT_REDIRECT_URL = '/yunohost/sso/'
|
|
|
|
# /yunohost/sso/?action=logout
|
2020-12-12 19:37:20 +01:00
|
|
|
|
2020-12-22 18:55:57 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# https://docs.djangoproject.com/en/2.2/howto/auth-remote-user/
|
|
|
|
# Add RemoteUserMiddleware after AuthenticationMiddleware
|
2020-12-12 19:37:20 +01:00
|
|
|
|
2020-12-22 18:55:57 +01:00
|
|
|
MIDDLEWARE.insert(
|
|
|
|
MIDDLEWARE.index('django.contrib.auth.middleware.AuthenticationMiddleware') + 1,
|
|
|
|
'ynh_authenticate.RemoteUserMiddleware',
|
2020-12-12 19:37:20 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
ADMINS = (
|
|
|
|
('__ADMIN__', '__ADMINMAIL__'),
|
|
|
|
)
|
|
|
|
|
|
|
|
MANAGERS = ADMINS
|
|
|
|
|
|
|
|
DATABASES = {
|
|
|
|
'default': {
|
|
|
|
'ENGINE': 'django.db.backends.postgresql',
|
|
|
|
'NAME': '__APP__',
|
|
|
|
'USER': '__APP__',
|
|
|
|
'PASSWORD': '__DB_PWD__',
|
|
|
|
'HOST': '127.0.0.1',
|
|
|
|
'PORT': '5432', # Default Postgres Port
|
|
|
|
'CONN_MAX_AGE': 600,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Title of site to use
|
|
|
|
SITE_TITLE = '__APP__'
|
|
|
|
|
|
|
|
# Site domain
|
|
|
|
SITE_DOMAIN = '__DOMAIN__'
|
|
|
|
|
|
|
|
# Subject of emails includes site title
|
|
|
|
EMAIL_SUBJECT_PREFIX = f'[{SITE_TITLE}] '
|
|
|
|
|
|
|
|
|
|
|
|
# E-mail address that error messages come from.
|
|
|
|
SERVER_EMAIL = 'noreply@__DOMAIN__'
|
|
|
|
|
|
|
|
# Default email address to use for various automated correspondence from
|
|
|
|
# the site managers. Used for registration emails.
|
|
|
|
DEFAULT_FROM_EMAIL = '__ADMINMAIL__'
|
|
|
|
|
|
|
|
# List of URLs your site is supposed to serve
|
|
|
|
ALLOWED_HOSTS = ['__DOMAIN__']
|
|
|
|
|
|
|
|
# _____________________________________________________________________________
|
|
|
|
# Configuration for caching
|
|
|
|
CACHES = {
|
|
|
|
'default': {
|
|
|
|
'BACKEND': 'django_redis.cache.RedisCache',
|
|
|
|
'LOCATION': 'redis://127.0.0.1:6379/__REDIS_DB__',
|
|
|
|
# If redis is running on same host as Django-For-Runners, you might
|
|
|
|
# want to use unix sockets instead:
|
|
|
|
# 'LOCATION': 'unix:///var/run/redis/redis.sock?db=1',
|
|
|
|
'OPTIONS': {
|
|
|
|
'CLIENT_CLASS': 'django_redis.client.DefaultClient',
|
|
|
|
},
|
|
|
|
'KEY_PREFIX': '__APP__',
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
# _____________________________________________________________________________
|
|
|
|
# Static files (CSS, JavaScript, Images)
|
|
|
|
|
|
|
|
if PATH_URL:
|
|
|
|
STATIC_URL = f'/{PATH_URL}/static/'
|
|
|
|
MEDIA_URL = f'/{PATH_URL}/media/'
|
|
|
|
else:
|
|
|
|
# Installed to domain root, without a path prefix?
|
|
|
|
STATIC_URL = '/static/'
|
|
|
|
MEDIA_URL = '/media/'
|
|
|
|
|
|
|
|
STATIC_ROOT = str(FINAL_WWW_PATH / 'static')
|
|
|
|
MEDIA_ROOT = str(FINAL_WWW_PATH / 'media')
|
|
|
|
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
LOGGING = {
|
|
|
|
'version': 1,
|
|
|
|
'disable_existing_loggers': True,
|
|
|
|
'formatters': {
|
|
|
|
'verbose': {
|
|
|
|
'format': '{asctime} {levelname} {name} {module}.{funcName} {message}',
|
|
|
|
'style': '{',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'handlers': {
|
|
|
|
'mail_admins': {
|
|
|
|
'level': 'ERROR',
|
|
|
|
'formatter': 'verbose',
|
|
|
|
'class': 'django.utils.log.AdminEmailHandler',
|
|
|
|
'include_html': True,
|
|
|
|
},
|
2020-12-22 18:55:57 +01:00
|
|
|
'log_file': {
|
2020-12-12 19:37:20 +01:00
|
|
|
'level': 'DEBUG',
|
|
|
|
'class': 'logging.handlers.WatchedFileHandler',
|
|
|
|
'formatter': 'verbose',
|
|
|
|
'filename': str(LOG_FILE),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'loggers': {
|
2020-12-22 18:55:57 +01:00
|
|
|
'': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False},
|
|
|
|
'django': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False},
|
|
|
|
'axes': {'handlers': ['log_file', 'mail_admins'], 'level': 'WARNING', 'propagate': False},
|
|
|
|
'django_tools': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False},
|
|
|
|
'for_runners': {'handlers': ['log_file', 'mail_admins'], 'level': 'INFO', 'propagate': False},
|
2020-12-12 19:37:20 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
try:
|
2020-12-22 18:52:25 +01:00
|
|
|
from local_settings import * # noqa
|
2020-12-12 19:37:20 +01:00
|
|
|
except ImportError:
|
|
|
|
pass
|