Fabfile: PEP8
[ganeti_webmgr.git] / settings.py.dist
blob3521bec5f364c32606cdaa9de8ff243645b38180
1 # Copyright (C) 2010 Oregon State University et al.
2 # Copyright (C) 2010 Greek Research and Technology Network
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # of the License, or (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
17 # USA.
19 # Django settings for ganeti_webmgr project.
21 from ganeti_web.settings import *
23 import os.path
25 DEBUG = True
26 TEMPLATE_DEBUG = DEBUG
28 # XXX - Django sets DEBUG to False when running unittests.  They want to ensure
29 # that you test as if it were a production environment.  Unfortunately we have
30 # some models and other settings used only for testing.  We use the TESTING flag
31 # to enable or disable these items.
33 # If you run the unittests without this set to TRUE, you will get many errors!
34 TESTING = False
35 # Setting this to False disables south migrations when running tests.
36 SOUTH_TESTS_MIGRATE = False
37 SKIP_SOUTH_TESTS = True
39 ADMINS = (
40     # ('Your Name', 'your_email@example.com'),
43 MANAGERS = ADMINS
45 DATABASES = {
46     'default': {
47         'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
48         'NAME': 'ganeti.db',                      # Or path to database file if using sqlite3.
49         'USER': '',                      # Not used with sqlite3.
50         'PASSWORD': '',                  # Not used with sqlite3.
51         'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3.
52         'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
53     }
56 # Local time zone for this installation. Choices can be found here:
57 # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
58 # although not all choices may be available on all operating systems.
59 # If running in a Windows environment this must be set to the same as your
60 # system time zone.
61 TIME_ZONE = 'America/Los_Angeles'
63 # If no other locale is present/supported for the time leave the following as is.
64 # When locales are added, place them ath the "('yourlang', ugettext('YOUR LANGUAGE')),"
65 # line. E.g, for the Greek locale, it becomes: ('el', ugettext('Greek'))
68 LANGUAGES = (
69 #        ('yourlang', ugettext('YOUR LANGUAGE')),
70     ('el', ugettext('Greek')),
71     ('en', ugettext('English')),
73 # end-of localization support
75 # Language code for this installation. All choices can be found here:
76 # http://www.i18nguy.com/unicode/language-identifiers.html
77 LANGUAGE_CODE = 'en-US'
79 # Unique site id used by many modules to distinguish site from others.
80 SITE_ID = 1
82 # Site name and domain referenced by some modules to provide links back to
83 #  the site.
84 SITE_NAME = 'Ganeti Web Manager'
85 SITE_DOMAIN = 'localhost:8000'
87 # Enable i18n (translations) and l10n (locales, currency, times).
88 # You really have no good reason to disable these unless you are only
89 # going to be using GWM in English.
90 USE_I18N = True
92 # If you set this to False, Django will not format dates, numbers and
93 # calendars according to the current locale
94 USE_L10N = True
96 # absolute path to the docroot of this site
97 DOC_ROOT = os.path.dirname(os.path.realpath(__file__))
99 # prefix used for the site.  ie. http://myhost.com/<SITE_ROOT>
100 # for the django standalone server this should be ''
101 # for apache this is the url the site is mapped to, probably /tracker
102 SITE_ROOT = ''
104 # Absolute path to the directory that holds media.
105 # Example: "/home/media/media.lawrence.com/"
106 STATIC_ROOT = '%s/static' % DOC_ROOT
108 # URL that handles the media served from STATIC_ROOT.
109 # XXX contrary to django docs, do not use a trailling slash.  It makes urls
110 # using this url easier to read.  ie.  {{STATIC_URL}}/images/foo.png
111 STATIC_URL = '%s/static' % SITE_ROOT
113 # Path to installed locales. New translations should be added to this
114 # directory.
115 LOCALE_PATHS = (
116   '%s/locale' % DOC_ROOT,
119 # Make this unique, and don't share it with anybody.
120 SECRET_KEY = '!c&bm88vo=gby*vxf2gydv8hc!+f+eo+yu&!g&!)#n5quwsr82'
122 AUTHENTICATION_BACKENDS = (
123     'django.contrib.auth.backends.ModelBackend',
124     'object_permissions.backend.ObjectPermBackend',
127 ROOT_URLCONF = 'urls'
129 TEMPLATE_DIRS = (
130     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
131     # Always use forward slashes, even on Windows.
132     # Don't forget to use absolute paths, not relative paths.
133     'templates/'
136 # Search settings
137 HAYSTACK_SITECONF = 'search_sites'
138 HAYSTACK_SEARCH_ENGINE = 'whoosh'
139 HAYSTACK_WHOOSH_PATH = os.path.join(DOC_ROOT, 'whoosh_index')
141 LOGIN_REDIRECT_URL = '/'
143 DATE_FORMAT = "d/m/Y"
144 DATETIME_FORMAT = "d/m/Y H:i"
146 ACCOUNT_ACTIVATION_DAYS = 7
148 # Email settings for registration
149 EMAIL_HOST = "localhost"
150 EMAIL_PORT = "25"
151 # DEFAULT_FROM_EMAIL = "noreply@example.org"
153 # Whether users should be able to create their own accounts. 
154 # False if accounts can only be created by admins. 
155 ALLOW_OPEN_REGISTRATION = True
157 # A sample logging configuration. The only tangible logging
158 # performed by this configuration is to send an email to
159 # the site admins on every HTTP 500 error.
160 # See http://docs.djangoproject.com/en/dev/topics/logging for
161 # more details on how to customize your logging configuration.
162 LOGGING = {
163     'version': 1,
164     'disable_existing_loggers': False,
165     'handlers': {
166         'mail_admins': {
167             'level': 'ERROR',
168             'class': 'django.utils.log.AdminEmailHandler'
169         }
170     },
171     'loggers': {
172         'django.request': {
173             'handlers': ['mail_admins'],
174             'level': 'ERROR',
175             'propagate': True,
176         },
177     }
180 # default items per page
181 ITEMS_PER_PAGE = 10
183 # Ganeti Cached Cluster Objects Timeouts
184 #    LAZY_CACHE_REFRESH (milliseconds) is the fallback cache timer that is
185 #    checked when the object is instantiated. It defaults to 600000ms, or ten
186 #    minutes.
187 LAZY_CACHE_REFRESH = 600000
189 # VNC Proxy. This will use a proxy to create local ports that are forwarded to
190 # the virtual machines.  It allows you to control access to the VNC servers.
192 # Expected values:
193 #   String syntax: "HOST:CONTROL_PORT", for example: "localhost:8888". If
194 #   localhost is used then the proxy will only be accessible to clients and
195 #   browsers on localhost. Production servers should use a publicly accessible
196 #   hostname or IP
198 # Firewall Rules:
199 #   Control Port: 8888, must be open between Ganeti Web Manager and Proxy
200 #   Internal Ports: 12000+ must be open between the Proxy and Ganeti Nodes
201 #   External Ports: default is 7000-8000, must be open between Proxy and Clients
202 #   Flash Policy Server: 843, must open between Proxy and Clients
204 VNC_PROXY='localhost:8888'
207 # API Key for authenticating scripts that pull information from ganeti, such as
208 # list of sshkey's to assign to a virtual machine
210 # XXX this is a temporary feature that will eventually be replaced by a system
211 #     that automatically creates keys per virtual machine.  This is just a quick
212 #     way of enabled a secure method to pull sshkeys from ganeti web manager
213 WEB_MGR_API_KEY = "CHANGE_ME"
215 # PyCurls default TIMEOUT in 7.21.6 defaults to 13 and CONNECTTIMEOUT to 78.
216 # This is way too long to wait for incorrect or unresponsive ganeti clusters
217 # when using the rapi for syncing and querying.
218 RAPI_CONNECT_TIMEOUT = 3