summaryrefslogtreecommitdiff
path: root/local_settings.py.example
diff options
context:
space:
mode:
Diffstat (limited to 'local_settings.py.example')
-rw-r--r--local_settings.py.example47
1 files changed, 34 insertions, 13 deletions
diff --git a/local_settings.py.example b/local_settings.py.example
index beb48f84..b5883720 100644
--- a/local_settings.py.example
+++ b/local_settings.py.example
@@ -1,9 +1,9 @@
-### Django settings for archlinux project.
+### Django settings for Parabola GNU/Linux-libre project.
## Debug settings
-DEBUG = False
-TEMPLATE_DEBUG = True
-DEBUG_TOOLBAR = True
+DEBUG = True # As far as I can tell, this must be True for /media/* URLs to work
+TEMPLATE_DEBUG = True # More helpful this way
+DEBUG_TOOLBAR = False # Must install package django-debug-toolbar to use
## For django debug toolbar
INTERNAL_IPS = ('127.0.0.1',)
@@ -17,15 +17,37 @@ ADMINS = (
DATABASES = {
'default': {
'ENGINE' : 'django.db.backends.mysql',
- 'NAME' : 'archlinux',
- 'USER' : 'archlinux',
- 'PASSWORD': 'archlinux',
+ 'NAME' : 'parabola',
+ 'USER' : 'parabola',
+ 'PASSWORD': 'parabola',
'HOST' : '',
'PORT' : '',
- 'OPTIONS' : {'init_command': 'SET storage_engine=InnoDB'},
+ # InnoDB WILL NOT work
+ 'OPTIONS' : {'init_command': 'SET storage_engine=MyISAM'},
},
}
+## PostgreSQL Database settings
+#DATABASES = {
+# 'default': {
+# 'ENGINE' : 'django.db.backends.postgresql_psycopg2',
+# 'NAME' : 'parabola',
+# 'USER' : 'parabola',
+# 'PASSWORD': 'parabola',
+# 'HOST' : '',
+# 'PORT' : '',
+# 'OPTIONS' : {},
+# },
+#}
+
+## sqlite3 Database settings
+#DATABASES = {
+# 'default': {
+# 'ENGINE' : 'sqlite3',
+# 'NAME' : '/srv/http/web/db.sqlite',
+# },
+#}
+
## Define cache settings
CACHES = {
'default': {
@@ -43,18 +65,17 @@ CACHE_MIDDLEWARE_SECONDS = 300
SESSION_COOKIE_SECURE = False
## location for saving dev pictures
-MEDIA_ROOT = '/srv/example.com/img/'
+MEDIA_ROOT = '/srv/http/media/devs/'
## web url for serving image files
-MEDIA_URL = 'http://example.com/img/'
+MEDIA_URL = '/media/'
## 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/'
-
+# Scheme-relative URL, should work for both http/https
+CDN_PATH = '//example.com/path/'
# vim: set ts=4 sw=4 et: