Projet

Général

Profil

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

root / debian / settings.py @ 9968c3c8

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

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

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

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

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

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

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

    
52
# HTTPS Security
53
# CSRF_COOKIE_SECURE = True
54
# SESSION_COOKIE_SECURE = True
(18-18/18)