31 lines
970 B
Python
31 lines
970 B
Python
|
import os
|
||
|
|
||
|
# Break it, fix it!
|
||
|
DEBUG = False
|
||
|
|
||
|
# Mandatory !
|
||
|
ALLOWED_HOSTS = ['inscription.correspondances-maths.fr', 'plateforme.correspondances-maths.fr']
|
||
|
|
||
|
SECRET_KEY = os.environ.get('DJANGO_SECRET_KEY', 'CHANGE_ME_IN_ENV_SETTINGS')
|
||
|
|
||
|
# Emails
|
||
|
EMAIL_BACKEND = 'mailer.backend.DbBackend'
|
||
|
MAILER_EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
||
|
EMAIL_USE_SSL = True
|
||
|
EMAIL_HOST = os.getenv("SMTP_HOST")
|
||
|
EMAIL_PORT = os.getenv("SMTP_PORT")
|
||
|
EMAIL_HOST_USER = os.getenv("SMTP_HOST_USER")
|
||
|
EMAIL_HOST_PASSWORD = os.getenv("SMTP_HOST_PASSWORD")
|
||
|
|
||
|
DEFAULT_FROM_EMAIL = os.getenv('FROM_EMAIL', 'Contact Correspondances <contact@correspondances-maths.fr>')
|
||
|
SERVER_EMAIL = os.getenv('SERVER_EMAIL', 'contact@correspondances-maths.fr')
|
||
|
|
||
|
# Security settings
|
||
|
SECURE_CONTENT_TYPE_NOSNIFF = False
|
||
|
SECURE_BROWSER_XSS_FILTER = False
|
||
|
SESSION_COOKIE_SECURE = False
|
||
|
CSRF_COOKIE_SECURE = False
|
||
|
CSRF_COOKIE_HTTPONLY = False
|
||
|
X_FRAME_OPTIONS = 'DENY'
|
||
|
SESSION_COOKIE_AGE = 60 * 60 * 3
|