Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
8e176cca
Commit
8e176cca
authored
Aug 27, 2014
by
Chris Reffett
Browse files
Remove settings.py so that .gitignore works right
parent
e37b39e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
go/settings/settings.py
deleted
100644 → 0
View file @
e37b39e3
"""
Django settings for go project.
For more information on this file, see
https://docs.djangoproject.com/en/1.6/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.6/ref/settings/
"""
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import
secret
import
os
BASE_DIR
=
os
.
path
.
dirname
(
os
.
path
.
dirname
(
__file__
))
DEBUG
=
False
TEMPLATE_DEBUG
=
DEBUG
ADMINS
=
(
# ('Your Name', 'your_email@example.com'),
)
MANAGERS
=
ADMINS
DATABASES
=
{
'default'
:
{
'ENGINE'
:
'django.db.backends.mysql'
,
'NAME'
:
secret
.
DB_NAME
,
'USER'
:
secret
.
DB_USER
,
'PASSWORD'
:
secret
.
DB_PASSWORD
,
'HOST'
:
secret
.
DB_HOST
,
'PORT'
:
''
,
}
}
# Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
ALLOWED_HOSTS
=
[
'127.0.0.1'
]
# 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.
# In a Windows environment this must be set to your system time zone.
TIME_ZONE
=
'America/New_York'
# Language code for this installation. All choices can be found here:
# http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGE_CODE
=
'en-us'
SITE_ID
=
1
# If you set this to False, Django will make some optimizations so as not
# to load the internationalization machinery.
USE_I18N
=
True
# If you set this to False, Django will not format dates, numbers and
# calendars according to the current locale.
USE_L10N
=
True
# If you set this to False, Django will not use timezone-aware datetimes.
USE_TZ
=
True
MEDIA_URL
=
'/media/'
MEDIA_ROOT
=
(
os
.
path
.
join
(
BASE_DIR
,
'media/'
))
MEDIAFILES_DIRS
=
(
)
STATIC_URL
=
'/static/'
STATIC_ROOT
=
os
.
path
.
join
(
BASE_DIR
,
'static/'
)
STATICFILES_DIRS
=
(
'static/'
,
)
# List of finder classes that know how to find static files in
# various locations.
STATICFILES_FINDERS
=
(
'django.contrib.staticfiles.finders.FileSystemFinder'
,
'django.contrib.staticfiles.finders.AppDirectoriesFinder'
,
# 'django.contrib.staticfiles.finders.DefaultStorageFinder',
)
# Make this unique, and don't share it with anybody.
SECRET_KEY
=
secret
.
SECRET_KEY
# 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',
)
TEMPLATE_CONTEXT_PROCESSORS
=
(
'django.core.context_processors.request'
,
'django.contrib.auth.context_processors.auth'
,
)
MIDDLEWARE_CLASSES
=
(
'django.middleware.common.CommonMiddleware'
,
'django.contrib.sessions.middleware.SessionMiddleware'
,
'django.middleware.csrf.CsrfViewMiddleware'
,
'django.contrib.auth.middleware.AuthenticationMiddleware'
,
'django.contrib.messages.middleware.MessageMiddleware'
,
# Uncomment the next line for simple clickjacking protection:
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
ROOT_URLCONF
=
'settings.urls'
# Python dotted path to the WSGI application used by Django's runserver.
WSGI_APPLICATION
=
'settings.wsgi.application'
TEMPLATE_DIRS
=
(
'templates'
,
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
)
INSTALLED_APPS
=
(
'django.contrib.auth'
,
'django.contrib.contenttypes'
,
'django.contrib.sessions'
,
'django.contrib.sites'
,
'django.contrib.messages'
,
'django.contrib.staticfiles'
,
'django.contrib.comments'
,
'go'
,
'south'
,
'piwik'
,
# Uncomment the next line to enable the admin:
'django.contrib.admin'
,
'qrcode'
,
# Uncomment the next line to enable admin documentation:
# 'django.contrib.admindocs',
)
SESSION_SERIALIZER
=
'django.contrib.sessions.serializers.JSONSerializer'
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING
=
{
'version'
:
1
,
'disable_existing_loggers'
:
False
,
'filters'
:
{
'require_debug_false'
:
{
'()'
:
'django.utils.log.RequireDebugFalse'
}
},
'handlers'
:
{
'mail_admins'
:
{
'level'
:
'ERROR'
,
'filters'
:
[
'require_debug_false'
],
'class'
:
'django.utils.log.AdminEmailHandler'
}
},
'loggers'
:
{
'django.request'
:
{
'handlers'
:
[
'mail_admins'
],
'level'
:
'ERROR'
,
'propagate'
:
True
,
},
}
}
LOGIN_URL
=
'/login'
LOGOUT_URL
=
'/logout'
LOGIN_REDIRECT_URL
=
'/'
# Authentication
# http://pythonhosted.org/django-auth-ldap
import
ldap
# Baseline configuration
# Keep ModelBackend around for per-user permissions and maybe a local
# superuser.
AUTHENTICATION_BACKENDS
=
(
'django_auth_ldap.backend.LDAPBackend'
,
'django.contrib.auth.backends.ModelBackend'
,
)
AUTH_LDAP_SERVER_URI
=
"ldaps://directory.gmu.edu:636"
# server url
AUTH_LDAP_BIND_DN
=
"ou=people,o=gmu.edu"
# bind DN
AUTH_LDAP_BIND_AS_AUTHENTICATING_USER
=
True
# use the user
AUTH_LDAP_USER_DN_TEMPLATE
=
"uid=%(user)s,ou=people,o=gmu.edu"
AUTH_LDAP_GLOBAL_OPTIONS
=
{
# ignore UAC cert.
ldap
.
OPT_X_TLS
:
ldap
.
OPT_X_TLS_DEMAND
,
ldap
.
OPT_X_TLS_REQUIRE_CERT
:
ldap
.
OPT_X_TLS_NEVER
,
}
# Populate the Django user from the LDAP directory.
AUTH_LDAP_USER_ATTR_MAP
=
{
"first_name"
:
"givenName"
,
"last_name"
:
"sn"
,
"email"
:
"mail"
}
#AUTH_LDAP_USER_FLAGS_BY_GROUP = {
# "is_active": "cn=active,ou=django,ou=groups,dc=example,dc=com",
# "is_staff": "cn=staff,ou=django,ou=groups,dc=example,dc=com",
# "is_superuser": "cn=superuser,ou=django,ou=groups,dc=example,dc=com"
#}
#AUTH_LDAP_PROFILE_FLAGS_BY_GROUP = {
# "is_awesome": "cn=awesome,ou=django,ou=groups,dc=example,dc=com",
#}
# This is the default, but I like to be explicit.
AUTH_LDAP_ALWAYS_UPDATE_USER
=
True
# Piwik settings.
PIWIK_SITE_ID
=
secret
.
PIWIK_SITE_ID
PIWIK_URL
=
secret
.
PIWIK_URL
SERVERURL
=
secret
.
SERVERURL
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment