gva/gnuviechadmin/gnuviechadmin/settings.py

481 lines
15 KiB
Python
Raw Normal View History

# -*- python -*-
# pymode:lint_ignore=E501
"""
Common settings and globals.
2014-05-18 00:07:32 +02:00
"""
2014-05-18 00:07:32 +02:00
from os.path import abspath, basename, dirname, join, normpath
from sys import path
from django.contrib.messages import constants as messages
from gvacommon.settings_utils import get_env_variable
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### PATH CONFIGURATION
2014-05-18 00:07:32 +02:00
# Absolute filesystem path to the Django project directory:
DJANGO_ROOT = dirname(dirname(abspath(__file__)))
# Absolute filesystem path to the top-level project folder:
SITE_ROOT = dirname(DJANGO_ROOT)
# Site name:
SITE_NAME = basename(DJANGO_ROOT)
# Add our project to our pythonpath, this way we don't need to type our project
# name in our dotted import paths:
path.append(DJANGO_ROOT)
2015-11-22 15:03:47 +01:00
# ######### END PATH CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### DEBUG CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
DEBUG = False
2015-11-22 15:03:47 +01:00
# ######### END DEBUG CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### MANAGER CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#admins
ADMINS = (
(get_env_variable('GVA_ADMIN_NAME', default='Admin'),
get_env_variable('GVA_ADMIN_EMAIL', default='admin@example.org')),
2014-05-18 00:07:32 +02:00
)
# See: https://docs.djangoproject.com/en/dev/ref/settings/#managers
MANAGERS = ADMINS
2015-11-22 15:03:47 +01:00
# ######### END MANAGER CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### DATABASE CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': get_env_variable('GVA_PGSQL_DATABASE', default='gnuviechadmin'),
'USER': get_env_variable('GVA_PGSQL_USER', default='gnuviechadmin'),
'PASSWORD': get_env_variable('GVA_PGSQL_PASSWORD'),
'HOST': get_env_variable('GVA_PGSQL_HOSTNAME', default='db'),
'PORT': get_env_variable('GVA_PGSQL_PORT', int, default=5432),
2014-05-18 00:07:32 +02:00
}
}
2015-11-22 15:03:47 +01:00
# ######### END DATABASE CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### GENERAL CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#time-zone
TIME_ZONE = 'Europe/Berlin'
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#language-code
LANGUAGE_CODE = 'en-us'
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#site-id
SITE_ID = 1
SITES_DOMAIN_NAME = get_env_variable('GVA_DOMAIN_NAME')
SITES_SITE_NAME = get_env_variable('GVA_SITE_NAME')
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#use-i18n
USE_I18N = True
# See: https://docs.djangoproject.com/en/dev/ref/settings/#use-l10n
USE_L10N = True
# See: https://docs.djangoproject.com/en/dev/ref/settings/#use-tz
USE_TZ = True
2015-11-22 15:03:47 +01:00
# ######### END GENERAL CONFIGURATION
2014-05-18 00:07:32 +02:00
LOCALE_PATHS = (
normpath(join(SITE_ROOT, 'locale')),
)
2015-11-22 15:03:47 +01:00
# ######### MEDIA CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#media-root
MEDIA_ROOT = normpath(join(SITE_ROOT, 'media'))
# See: https://docs.djangoproject.com/en/dev/ref/settings/#media-url
MEDIA_URL = '/media/'
2015-11-22 15:03:47 +01:00
# ######### END MEDIA CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url
STATIC_URL = '/static/'
2015-11-22 15:03:47 +01:00
# See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#std:setting-STATICFILES_DIRS # noqa
2014-05-18 00:07:32 +02:00
STATICFILES_DIRS = (
normpath(join(SITE_ROOT, 'gnuviechadmin', 'assets')),
2014-05-18 00:07:32 +02:00
)
2015-11-22 15:03:47 +01:00
# See: https://docs.djangoproject.com/en/dev/ref/contrib/staticfiles/#staticfiles-finders # noqa
2014-05-18 00:07:32 +02:00
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)
2015-11-22 15:03:47 +01:00
# ######### END STATIC FILE CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### SECRET CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#secret-key
# Note: This key should only be used for development and testing.
SECRET_KEY = get_env_variable('GVA_SITE_SECRET')
2015-11-22 15:03:47 +01:00
# ######### END SECRET CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### SITE CONFIGURATION
2014-05-18 00:07:32 +02:00
# Hosts/domain names that are valid for this site
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS = []
2015-11-22 15:03:47 +01:00
# ######### END SITE CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### FIXTURE CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#std:setting-FIXTURE_DIRS # noqa
2014-05-18 00:07:32 +02:00
FIXTURE_DIRS = (
normpath(join(SITE_ROOT, 'fixtures')),
)
2015-11-22 15:03:47 +01:00
# ######### END FIXTURE CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### TEMPLATE CONFIGURATION
# See: https://docs.djangoproject.com/en/1.9/ref/settings/#std:setting-TEMPLATES # noqa
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [
normpath(join(DJANGO_ROOT, 'templates')),
],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.contrib.auth.context_processors.auth',
'django.template.context_processors.debug',
'django.template.context_processors.i18n',
'django.template.context_processors.media',
'django.template.context_processors.static',
'django.template.context_processors.tz',
'django.contrib.messages.context_processors.messages',
'django.template.context_processors.request',
# custom context processors
'gnuviechadmin.context_processors.navigation',
'gnuviechadmin.context_processors.version_info',
],
},
},
]
2015-11-22 15:03:47 +01:00
# ######### END TEMPLATE CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### MIDDLEWARE CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#middleware-classes
MIDDLEWARE = [
2014-05-18 00:07:32 +02:00
# Default Django middleware.
'django.middleware.common.CommonMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
# uncomment next line to enable translation to browser locale
'django.middleware.locale.LocaleMiddleware',
2014-05-18 00:07:32 +02:00
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
2015-11-22 15:03:47 +01:00
# ######### END MIDDLEWARE CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-01-17 16:28:19 +01:00
AUTHENTICATION_BACKENDS = (
# Needed to login by username in Django admin, regardless of `allauth`
"django.contrib.auth.backends.ModelBackend",
# `allauth` specific authentication methods, such as login by e-mail
"allauth.account.auth_backends.AuthenticationBackend",
)
2015-11-22 15:03:47 +01:00
# ######### URL CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#root-urlconf
ROOT_URLCONF = '%s.urls' % SITE_NAME
2015-11-22 15:03:47 +01:00
# ######### END URL CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### TEST RUNNER CONFIGURATION
TEST_RUNNER = 'django.test.runner.DiscoverRunner'
2015-11-22 15:03:47 +01:00
# ######### END TEST RUNNER CONFIGURATION
2015-11-22 15:03:47 +01:00
# ######### APP CONFIGURATION
2014-05-18 00:07:32 +02:00
DJANGO_APPS = (
# Default Django apps:
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'django.contrib.staticfiles',
# Useful template tags:
'django.contrib.humanize',
2014-05-18 00:07:32 +02:00
# Admin panel and documentation:
'django.contrib.admin',
# Flatpages for about page
'django.contrib.flatpages',
'crispy_forms',
2014-05-18 00:07:32 +02:00
)
2015-01-17 16:28:19 +01:00
ALLAUTH_APPS = (
'allauth',
'allauth.account',
'allauth.socialaccount',
'allauth.socialaccount.providers.google',
'allauth.socialaccount.providers.linkedin_oauth2',
'allauth.socialaccount.providers.twitter',
'allauth.socialaccount.providers.xing',
)
2014-05-18 00:07:32 +02:00
# Apps specific for this project go here.
LOCAL_APPS = (
'dashboard',
'taskresults',
'ldaptasks',
'mysqltasks',
'pgsqltasks',
'fileservertasks',
'webtasks',
'domains',
2014-05-24 21:28:33 +02:00
'osusers',
'managemails',
2015-01-04 17:57:51 +01:00
'userdbs',
'hostingpackages',
'websites',
2015-02-01 20:58:53 +01:00
'contact_form',
2014-05-18 00:07:32 +02:00
)
# See: https://docs.djangoproject.com/en/dev/ref/settings/#installed-apps
2015-01-17 16:28:19 +01:00
INSTALLED_APPS = DJANGO_APPS + ALLAUTH_APPS + LOCAL_APPS
MESSAGE_TAGS = {
messages.DEBUG: '',
messages.ERROR: 'alert-danger',
messages.INFO: 'alert-info',
messages.SUCCESS: 'alert-success',
messages.WARNING: 'alert-warning',
}
2015-11-22 15:03:47 +01:00
# ######### END APP CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### ALLAUTH CONFIGURATION
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_EMAIL_VERIFICATION = 'mandatory'
LOGIN_REDIRECT_URL = '/'
SOCIALACCOUNT_QUERY_EMAIL = True
2015-11-22 15:03:47 +01:00
# ######### END ALLAUTH CONFIGURATION
2015-11-22 15:03:47 +01:00
# ######### CRISPY FORMS CONFIGURATION
CRISPY_TEMPLATE_PACK = 'bootstrap3'
2015-11-22 15:03:47 +01:00
# ######### END CRISPY_FORMS CONFIGURATION
2015-11-22 15:03:47 +01:00
# ######### LOGGING CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#logging
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(name)s '
'%(module)s:%(lineno)d %(process)d %(thread)d %(message)s',
},
'simple': {
'format': '%(levelname)s %(name)s:%(lineno)d %(message)s',
},
},
2014-05-18 00:07:32 +02:00
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
}
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
}
}
2015-11-22 15:03:47 +01:00
# ######### END LOGGING CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### WSGI CONFIGURATION
2014-05-18 00:07:32 +02:00
# See: https://docs.djangoproject.com/en/dev/ref/settings/#wsgi-application
WSGI_APPLICATION = '%s.wsgi.application' % SITE_NAME
2015-11-22 15:03:47 +01:00
# ######### END WSGI CONFIGURATION
2014-05-18 00:07:32 +02:00
2015-11-22 15:03:47 +01:00
# ######### CELERY CONFIGURATION
BROKER_URL = get_env_variable(
'GVA_BROKER_URL',
default='amqp://gnuviechadmin:gnuviechadmin@mq/gnuviechadmin')
CELERY_RESULT_BACKEND = get_env_variable(
'GVA_RESULTS_REDIS_URL',
default='redis://:gnuviechadmin@redis:6379/0')
2014-05-25 23:35:06 +02:00
CELERY_TASK_RESULT_EXPIRES = None
CELERY_ROUTES = (
'gvacommon.celeryrouters.GvaRouter',
)
CELERY_TIMEZONE = 'Europe/Berlin'
CELERY_ENABLE_UTC = True
CELERY_ACCEPT_CONTENT = ['json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_SERIALIZER = 'json'
2015-11-22 15:03:47 +01:00
# ######### END CELERY CONFIGURATION
2014-05-25 23:35:06 +02:00
2015-11-22 15:03:47 +01:00
# ######### CUSTOM APP CONFIGURATION
OSUSER_MINUID = get_env_variable('GVA_MIN_OS_UID', int, default=10000)
OSUSER_MINGID = get_env_variable('GVA_MIN_OS_GID', int, default=10000)
OSUSER_USERNAME_PREFIX = get_env_variable('GVA_OSUSER_PREFIX', default='usr')
OSUSER_HOME_BASEPATH = get_env_variable(
'GVA_OSUSER_HOME_BASEPATH', default='/home')
OSUSER_DEFAULT_SHELL = get_env_variable(
'GVA_OSUSER_DEFAULT_SHELL', default='/usr/bin/rssh')
OSUSER_SFTP_GROUP = 'sftponly'
OSUSER_SSH_GROUP = 'sshusers'
OSUSER_DEFAULT_GROUPS = [OSUSER_SFTP_GROUP]
OSUSER_UPLOAD_SERVER = get_env_variable(
'GVA_OSUSER_UPLOADSERVER', default='file')
GVA_LINK_WEBMAIL = get_env_variable(
'GVA_WEBMAIL_URL', default='https://webmail.example.org/')
GVA_LINK_PHPMYADMIN = get_env_variable(
'GVA_PHPMYADMIN_URL', default='https://phpmyadmin.example.org/')
GVA_LINK_PHPPGADMIN = get_env_variable(
'GVA_PHPPGADMIN_URL', default='https://phppgadmin.example.org/')
2015-11-22 15:03:47 +01:00
# ######### END CUSTOM APP CONFIGURATION
GVA_ENVIRONMENT = get_env_variable('GVA_ENVIRONMENT', default='prod')
# ######### STATIC FILE CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#static-root
STATIC_ROOT = '/srv/gnuviechadmin/static/'
if GVA_ENVIRONMENT == 'local':
# ######### DEBUG CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#debug
DEBUG = True
# See: https://docs.djangoproject.com/en/dev/ref/settings/#template-debug
TEMPLATES[0]['OPTIONS']['debug'] = DEBUG
# ######### END DEBUG CONFIGURATION
# ######### EMAIL CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-backend
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
# ######### END EMAIL CONFIGURATION
# ######### CACHE CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#caches
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
}
}
# ######### END CACHE CONFIGURATION
# ######### TOOLBAR CONFIGURATION
# See: http://django-debug-toolbar.readthedocs.org/en/latest/installation.html#explicit-setup # noqa
INSTALLED_APPS += (
'debug_toolbar',
)
MIDDLEWARE += [
'debug_toolbar.middleware.DebugToolbarMiddleware',
]
LOGGING['handlers'].update({
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple',
}
})
LOGGING['loggers'].update(dict(
[(key, {'handlers': ['console'], 'level': 'DEBUG', 'propagate': True, })
for key in [
'dashboard', 'domains', 'fileservertasks', 'gvacommon',
'gvawebcore', 'hostingpackages', 'ldaptasks', 'managemails',
'mysqltasks', 'osusers', 'pgsqltasks', 'taskresults',
'userdbs', 'websites']]))
DEBUG_TOOLBAR_PATCH_SETTINGS = False
# http://django-debug-toolbar.readthedocs.org/en/latest/installation.html
INTERNAL_IPS = ('127.0.0.1', '10.0.2.2')
# ######### END TOOLBAR CONFIGURATION
elif GVA_ENVIRONMENT == 'test':
PASSWORD_HASHERS = (
'django.contrib.auth.hashers.MD5PasswordHasher',
)
LOGGING['handlers'].update({
'console': {
'level': 'ERROR',
'class': 'logging.StreamHandler',
'formatter': 'simple',
}
})
LOGGING['loggers'].update(dict(
[(key, {'handlers': ['console'], 'level': 'ERROR', 'propagate': True, })
for key in [
'dashboard', 'domains', 'fileservertasks', 'gvacommon',
'gvawebcore', 'hostingpackages', 'ldaptasks', 'managemails',
'mysqltasks', 'osusers', 'pgsqltasks', 'taskresults',
'userdbs', 'websites']]))
BROKER_URL = BROKER_URL + '_test'
CELERY_RESULT_PERSISTENT = False
else:
# ######### HOST CONFIGURATION
# See: https://docs.djangoproject.com/en/1.5/releases/1.5/#allowed-hosts-required-in-production # noqa
ALLOWED_HOSTS = [SITES_DOMAIN_NAME]
# ######### END HOST CONFIGURATION
# ######### EMAIL CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-backend
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
# See: https://docs.djangoproject.com/en/dev/ref/settings/#email-subject-prefix
EMAIL_SUBJECT_PREFIX = '[%s] ' % SITE_NAME
# See: https://docs.djangoproject.com/en/dev/ref/settings/#default-from-email
DEFAULT_FROM_EMAIL = get_env_variable(
'GVA_SITE_ADMINMAIL', default='admin@example.org')
# See: https://docs.djangoproject.com/en/dev/ref/settings/#server-email
SERVER_EMAIL = get_env_variable(
'GVA_SITE_ADMINMAIL', default='admin@example.org')
# ######### END EMAIL CONFIGURATION
# ######### CACHE CONFIGURATION
# See: https://docs.djangoproject.com/en/dev/ref/settings/#caches
# CACHES = {}
# ######### END CACHE CONFIGURATION
# ######### ALLAUTH PRODUCTION CONFIGURATION
ACCOUNT_EMAIL_SUBJECT_PREFIX = '[Jan Dittberner IT-Consulting & -Solutions] '
ACCOUNT_DEFAULT_HTTP_PROTOCOL = 'https'
# ######### END ALLAUTH PRODUCTION CONFIGURATION