wcs/debian/settings.py

57 lines
1.6 KiB
Python

# Configuration for w.c.s.
# You can override default settings here
# w.c.s. is a Django application: for the full list of settings and their
# values, see https://docs.djangoproject.com/en/1.8/ref/settings/
# For more information on settings see
# https://docs.djangoproject.com/en/1.8/topics/settings/
# WARNING! Check settings before production use:
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
# This file is sourced by "execfile" from /usr/lib/combo/debian_config.py
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
# ADMINS = (
# # ('User 1', 'watchdog@example.net'),
# # ('User 2', 'janitor@example.net'),
# )
# ALLOWED_HOSTS must be correct in production!
# See https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts
ALLOWED_HOSTS = [
'*',
]
# Databases
# Default: a local database named "combo"
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
# Warning: don't change ENGINE
# DATABASES['default']['NAME'] = 'combo'
# DATABASES['default']['USER'] = 'combo'
# DATABASES['default']['PASSWORD'] = '******'
# DATABASES['default']['HOST'] = 'localhost'
# DATABASES['default']['PORT'] = '5432'
LANGUAGE_CODE = 'fr-fr'
TIME_ZONE = 'Europe/Paris'
# Email configuration
# EMAIL_SUBJECT_PREFIX = '[combo] '
# SERVER_EMAIL = 'root@combo.example.org'
# DEFAULT_FROM_EMAIL = 'webmaster@combo.example.org'
# SMTP configuration
# EMAIL_HOST = 'localhost'
# EMAIL_HOST_USER = ''
# EMAIL_HOST_PASSWORD = ''
# EMAIL_PORT = 25
# HTTPS Security
# CSRF_COOKIE_SECURE = True
# SESSION_COOKIE_SECURE = True
WCS_LEGACY_CONFIG_FILE = '/etc/wcs/wcs.cfg'