Difference between revisions of "Django"

From lippmann wiki
Jump to: navigation, search
(example apache config)
(example apache config)
Line 28: Line 28:
 
   
 
   
 
  </VirtualHost>
 
  </VirtualHost>
 +
 +
example settings with a local database and in the lippmann.us domain:
 +
 +
<pre>import os
 +
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
 +
SECRET_KEY = '!%jw0-z(@jj-kgx9o9)%9@*@ud=0(d#v7-5rjjam@-64zd+--i'
 +
DEBUG = True
 +
TEMPLATE_DEBUG = True
 +
ALLOWED_HOSTS = [
 +
            '.lippmann.us.',  # Allow domain and subdomains
 +
        ]
 +
CSRF_COOKIE_DOMAIN = ".lippmann.us"
 +
INSTALLED_APPS = (
 +
    'django.contrib.admin',
 +
    'django.contrib.auth',
 +
    'django.contrib.contenttypes',
 +
    'django.contrib.sessions',
 +
    'django.contrib.messages',
 +
    'django.contrib.staticfiles',
 +
    'polls',
 +
)
 +
MIDDLEWARE_CLASSES = (
 +
    'django.contrib.sessions.middleware.SessionMiddleware',
 +
    'django.middleware.common.CommonMiddleware',
 +
    'django.middleware.csrf.CsrfViewMiddleware',
 +
    'django.contrib.auth.middleware.AuthenticationMiddleware',
 +
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
 +
    'django.contrib.messages.middleware.MessageMiddleware',
 +
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
 +
)
 +
ROOT_URLCONF = 'zealot.urls'
 +
WSGI_APPLICATION = 'zealot.wsgi.application'
 +
DATABASES = {
 +
    'default': {
 +
        'ENGINE': 'mysql.connector.django',
 +
        'NAME': 'zealot',
 +
        'USER': 'user',
 +
        'PASSWORD': 'password',
 +
    }
 +
}
 +
LANGUAGE_CODE = 'en-us'
 +
TIME_ZONE = 'America/Los_Angeles'
 +
USE_I18N = True
 +
USE_L10N = True
 +
USE_TZ = True
 +
STATIC_URL = '/static/'</pre>

Revision as of 22:23, 7 June 2015

example apache config

Below apache config works with the debian django repository (specifically, the static alias is on a separate location). Outside of that the django instance zealot is stored in /var/django/zealot.

<VirtualHost *:8080>

ServerName fuego.lipmann.us
Alias /media/ /var/django/media/
Alias /static/ /usr/share/python-django-common/django/contrib/admin/static/

<Directory /var/django/static>
Require all granted
</Directory>

<Directory /var/django/media>
Require all granted
</Directory>

WSGIDaemonProcess zealot python-path=/var/django:/usr/lib/python3.4
WSGIProcessGroup zealot
WSGIScriptAlias / /var/django/zealot/wsgi.py

<Directory /var/django/zealot/>
<Files wsgi.py>
Require all granted
</Files>
</Directory>

</VirtualHost>

example settings with a local database and in the lippmann.us domain:

import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
SECRET_KEY = '!%jw0-z(@jj-kgx9o9)%9@*@ud=0(d#v7-5rjjam@-64zd+--i'
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = [
            '.lippmann.us.',  # Allow domain and subdomains
        ]
CSRF_COOKIE_DOMAIN = ".lippmann.us"
INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'polls',
)
MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF = 'zealot.urls'
WSGI_APPLICATION = 'zealot.wsgi.application'
DATABASES = {
    'default': {
        'ENGINE': 'mysql.connector.django',
        'NAME': 'zealot',
        'USER': 'user',
        'PASSWORD': 'password',
    }
}
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'America/Los_Angeles'
USE_I18N = True
USE_L10N = True
USE_TZ = True
STATIC_URL = '/static/'