Projet

Général

Profil

Télécharger (1,62 ko) Statistiques
| Branche: | Tag: | Révision:

root / debian / settings.py @ e090253d

1
# Configuration for corbo.
2
# You can override Corbo default settings here
3

    
4
# Corbo is a Django application: for the full list of settings and their
5
# values, see https://docs.djangoproject.com/en/1.7/ref/settings/
6
# For more information on settings see
7
# https://docs.djangoproject.com/en/1.7/topics/settings/
8

    
9
# WARNING! Quick-start development settings unsuitable for production!
10
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
11

    
12
# This file is sourced by "execfile" from /usr/lib/corbo/debian_config.py
13

    
14
# SECURITY WARNING: don't run with debug turned on in production!
15
DEBUG = False
16
TEMPLATE_DEBUG = False
17

    
18
#ADMINS = (
19
#        # ('User 1', 'watchdog@example.net'),
20
#        # ('User 2', 'janitor@example.net'),
21
#)
22

    
23
# ALLOWED_HOSTS must be correct in production!
24
# See https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts
25
ALLOWED_HOSTS = [
26
        '*',
27
]
28

    
29
# Databases
30
# Default: a local database named "corbo"
31
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
32
# Warning: don't change ENGINE
33
# DATABASES['default']['NAME'] = 'corbo'
34
# DATABASES['default']['USER'] = 'corbo'
35
# DATABASES['default']['PASSWORD'] = '******'
36
# DATABASES['default']['HOST'] = 'localhost'
37
# DATABASES['default']['PORT'] = '5432'
38

    
39
LANGUAGE_CODE = 'fr-fr'
40
TIME_ZONE = 'Europe/Paris'
41

    
42
# Email configuration
43
# EMAIL_SUBJECT_PREFIX = '[corbo] '
44
# SERVER_EMAIL = 'root@corbo.example.org'
45
# DEFAULT_FROM_EMAIL = 'webmaster@corbo.example.org'
46

    
47
# SMTP configuration
48
# EMAIL_HOST = 'localhost'
49
# EMAIL_HOST_USER = ''
50
# EMAIL_HOST_PASSWORD = ''
51
# EMAIL_PORT = 25
52

    
53
# HTTPS Security
54
# CSRF_COOKIE_SECURE = True
55
# SESSION_COOKIE_SECURE = True
(16-16/16)