aboutsummaryrefslogtreecommitdiff
path: root/rpkid/portal-gui/settings.py.in
blob: 22c92b74c72329f1cda0daa3010e3a057ad495d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# $Id$
#
# Sample Django settings.py for running the RPKI portal gui.  This
# template was written for Django 1.2.
#
# DO NOT EDIT!  This file is automatically generated from
# settings.py.in

import rpki.config

DEBUG = True
TEMPLATE_DEBUG = DEBUG

# needs to be set prior to the call to rpki.config.parser so it knows
# where to find the system rpki.conf
rpki.config.default_dirname = '%(AC_SYSCONFDIR)s'

# load the sql authentication bits from the system rpki.conf
rpki_config = rpki.config.parser(section='web_portal')

DATABASES = {
  'default' : {
     'ENGINE'  : 'django.db.backends.mysql',
     'NAME'    : rpki_config.get('sql-database'),
     'USER'    : rpki_config.get('sql-username'),
     'PASSWORD': rpki_config.get('sql-password'),

     # Ensure the default storage engine is InnoDB since we need
     # foreign key support.  The Django documentation suggests
     # removing this after the syncdb is performed as an optimization,
     # but there isn't an easy way to do this automatically.

     'OPTIONS' : {
        'init_command': 'SET storage_engine=INNODB'
     }
  }
}

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# If running in a Windows environment this must be set to the same as your
# system time zone.
TIME_ZONE = 'GMT'

# Make this unique, and don't share it with anybody.
SECRET_KEY = '%(AC_SECRET_KEY)s'

# List of callables that know how to import templates from various sources.
TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
    'django.template.loaders.eggs.Loader'
)

MIDDLEWARE_CLASSES = (
    'django.middleware.common.CommonMiddleware',
    'django.contrib.sessions.middleware.SessionMiddleware',

    # order is important here.  if csrfmidware is put before condgetmidware,
    # the returned pages get truncated for some reason!
    'django.middleware.http.ConditionalGetMiddleware',

    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware'
)

ROOT_URLCONF = 'rpki.gui.urls'

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.admin',
    'django.contrib.admindocs',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'rpki.irdb',
    'rpki.gui.app',
    'rpki.gui.cacheview',
    'rpki.gui.routeview',
)

TEMPLATE_CONTEXT_PROCESSORS = (
    "django.contrib.auth.context_processors.auth",
    "django.core.context_processors.debug",
    "django.core.context_processors.i18n",
    "django.core.context_processors.media",
    "django.contrib.messages.context_processors.messages",
    "django.core.context_processors.request"
)