evorepo/local_settings.py.example
Dan McGee e3ac143894 Settings refresh
Update a few things in settings.py, but more importantly, update
local_settings.py.template to be more in line with modern Django
settings.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-08-16 16:30:14 -05:00

61 lines
1.5 KiB
Plaintext

### Django settings for archlinux project.
## Debug settings
DEBUG = False
TEMPLATE_DEBUG = True
DEBUG_TOOLBAR = True
## For django debug toolbar
INTERNAL_IPS = ('127.0.0.1',)
## Notification admins
ADMINS = (
# ('Joe Admin', 'joeadmin@example.com'),
)
## MySQL Database settings
DATABASES = {
'default': {
'ENGINE' : 'django.db.backends.mysql',
'NAME' : 'archlinux',
'USER' : 'archlinux',
'PASSWORD': 'archlinux',
'HOST' : '',
'PORT' : '',
'OPTIONS' : {'init_command': 'SET storage_engine=InnoDB'},
},
}
## Define cache settings
CACHES = {
'default': {
'BACKEND' : 'django.core.cache.backends.dummy.DummyCache',
#'BACKEND' : 'django.core.cache.backends.memcached.MemcachedCache',
#'LOCATION': '127.0.0.1:11211',
}
}
CACHE_MIDDLEWARE_KEY_PREFIX = 'arch'
CACHE_MIDDLEWARE_SECONDS = 300
## Use secure session cookies? Make this true if you want all
## logged-in actions to take place over HTTPS only. If developing
## locally, you will want to use False.
SESSION_COOKIE_SECURE = False
## location for saving dev pictures
MEDIA_ROOT = '/srv/example.com/img/'
## web url for serving image files
MEDIA_URL = 'http://example.com/img/'
## Make this unique, and don't share it with anybody.
SECRET_KEY = '00000000000000000000000000000000000000000000000'
## CDN settings
CDN_ENABLED = False
CDN_PATH = 'http://example.com/path/'
CDN_PATH_SECURE = 'https://example.com/path/'
# vim: set ts=4 sw=4 et: