Added ALLOWED_HOSTS and LOGGING settings

This commit is contained in:
Martin Mahner 2013-03-19 19:13:24 +00:00
parent 2f8c22dc55
commit 2287efb3b7

View file

@ -16,6 +16,13 @@ SITE_ID = 1
# Make this unique, and don't share it with anybody. # Make this unique, and don't share it with anybody.
SECRET_KEY = '' SECRET_KEY = ''
ALLOWED_HOSTS = (
'dpaste.de',
'www.dpaste.de',
'localhost',
'127.0.0.1',
)
#============================================================================== #==============================================================================
# I18N # I18N
#============================================================================== #==============================================================================
@ -115,4 +122,30 @@ INSTALLED_APPS = (
# stored in the user session. # stored in the user session.
MAX_SNIPPETS_PER_USER = 25 MAX_SNIPPETS_PER_USER = 25
SENTRY_DSN = 'http://0afbf6df0a9749f9985059ed6c527b19:717d9800ba854149a7e7f6a501b2caa0@ohnoez.mahner.org/2' SENTRY_DSN = 'http://0afbf6df0a9749f9985059ed6c527b19:717d9800ba854149a7e7f6a501b2caa0@ohnoez.mahner.org/2'
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'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,
},
}
}