settings.py 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. import os
  2. # Django settings for coin project.
  3. PROJECT_PATH = os.path.abspath(os.path.dirname(__file__))
  4. DEBUG = True
  5. TEMPLATE_DEBUG = DEBUG
  6. ADMINS = (
  7. # ('Your Name', 'your_email@example.com'),
  8. )
  9. MANAGERS = ADMINS
  10. DATABASES = {
  11. 'default': {
  12. 'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
  13. 'NAME': 'illyse_coin', # Or path to database file if using sqlite3.
  14. # The following settings are not used with sqlite3:
  15. 'USER': 'illyse_coin',
  16. 'PASSWORD': '',
  17. 'HOST': '', # Empty for localhost through domain sockets or '127.0.0.1' for localhost through TCP.
  18. 'PORT': '', # Set to empty string for default.
  19. },
  20. 'ldap': {
  21. 'ENGINE': 'ldapdb.backends.ldap',
  22. 'NAME': 'ldap://localhost/',
  23. 'USER': 'cn=admin,o=ILLYSE,l=Villeurbanne,st=RHA,c=FR',
  24. 'PASSWORD': 'admin'
  25. }
  26. }
  27. DATABASE_ROUTERS = ['ldapdb.router.Router']
  28. # Hosts/domain names that are valid for this site; required if DEBUG is False
  29. # See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
  30. ALLOWED_HOSTS = []
  31. # Local time zone for this installation. Choices can be found here:
  32. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  33. # although not all choices may be available on all operating systems.
  34. # In a Windows environment this must be set to your system time zone.
  35. TIME_ZONE = 'Europe/Paris'
  36. # Language code for this installation. All choices can be found here:
  37. # http://www.i18nguy.com/unicode/language-identifiers.html
  38. LANGUAGE_CODE = 'fr-fr'
  39. SITE_ID = 1
  40. # If you set this to False, Django will make some optimizations so as not
  41. # to load the internationalization machinery.
  42. USE_I18N = True
  43. # If you set this to False, Django will not format dates, numbers and
  44. # calendars according to the current locale.
  45. USE_L10N = True
  46. # If you set this to False, Django will not use timezone-aware datetimes.
  47. USE_TZ = True
  48. # Absolute filesystem path to the directory that will hold user-uploaded files.
  49. # Example: "/var/www/example.com/media/"
  50. MEDIA_ROOT = ''
  51. # URL that handles the media served from MEDIA_ROOT. Make sure to use a
  52. # trailing slash.
  53. # Examples: "http://example.com/media/", "http://media.example.com/"
  54. MEDIA_URL = ''
  55. # Absolute path to the directory static files should be collected to.
  56. # Don't put anything in this directory yourself; store your static files
  57. # in apps' "static/" subdirectories and in STATICFILES_DIRS.
  58. # Example: "/var/www/example.com/static/"
  59. STATIC_ROOT = ''
  60. # URL prefix for static files.
  61. # Example: "http://example.com/static/", "http://static.example.com/"
  62. STATIC_URL = '/static/'
  63. # Additional locations of static files
  64. STATICFILES_DIRS = (
  65. # Put strings here, like "/home/html/static" or "C:/www/django/static".
  66. # Always use forward slashes, even on Windows.
  67. # Don't forget to use absolute paths, not relative paths.
  68. )
  69. # List of finder classes that know how to find static files in
  70. # various locations.
  71. STATICFILES_FINDERS = (
  72. 'django.contrib.staticfiles.finders.FileSystemFinder',
  73. 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  74. # 'django.contrib.staticfiles.finders.DefaultStorageFinder',
  75. )
  76. # Make this unique, and don't share it with anybody.
  77. SECRET_KEY = '!qy_)gao6q)57#mz1s-d$5^+dp1nt=lk1d19&9bb3co37vn)!3'
  78. # List of callables that know how to import templates from various sources.
  79. TEMPLATE_LOADERS = (
  80. 'django.template.loaders.filesystem.Loader',
  81. 'django.template.loaders.app_directories.Loader',
  82. # 'django.template.loaders.eggs.Loader',
  83. )
  84. MIDDLEWARE_CLASSES = (
  85. 'django.middleware.common.CommonMiddleware',
  86. 'django.contrib.sessions.middleware.SessionMiddleware',
  87. 'django.middleware.csrf.CsrfViewMiddleware',
  88. 'django.contrib.auth.middleware.AuthenticationMiddleware',
  89. 'django.contrib.messages.middleware.MessageMiddleware',
  90. # Uncomment the next line for simple clickjacking protection:
  91. # 'django.middleware.clickjacking.XFrameOptionsMiddleware',
  92. )
  93. ROOT_URLCONF = 'coin.urls'
  94. # Python dotted path to the WSGI application used by Django's runserver.
  95. WSGI_APPLICATION = 'coin.wsgi.application'
  96. TEMPLATE_DIRS = (
  97. # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
  98. # Always use forward slashes, even on Windows.
  99. # Don't forget to use absolute paths, not relative paths.
  100. os.path.join(PROJECT_PATH, 'templates/'),
  101. )
  102. INSTALLED_APPS = (
  103. 'django.contrib.auth',
  104. 'django.contrib.contenttypes',
  105. 'django.contrib.sessions',
  106. 'django.contrib.sites',
  107. 'django.contrib.messages',
  108. 'django.contrib.staticfiles',
  109. # Uncomment the next line to enable the admin:
  110. 'django.contrib.admin',
  111. # Uncomment the next line to enable admin documentation:
  112. 'django.contrib.admindocs',
  113. 'south',
  114. 'ldapdb', #LDAP as database backend
  115. 'django_ldapbackend', #LDAP for authentfication
  116. 'coin.members'
  117. )
  118. # A sample logging configuration. The only tangible logging
  119. # performed by this configuration is to send an email to
  120. # the site admins on every HTTP 500 error when DEBUG=False.
  121. # See http://docs.djangoproject.com/en/dev/topics/logging for
  122. # more details on how to customize your logging configuration.
  123. LOGGING = {
  124. 'version': 1,
  125. 'disable_existing_loggers': False,
  126. 'filters': {
  127. 'require_debug_false': {
  128. '()': 'django.utils.log.RequireDebugFalse'
  129. }
  130. },
  131. 'handlers': {
  132. 'mail_admins': {
  133. 'level': 'ERROR',
  134. 'filters': ['require_debug_false'],
  135. 'class': 'django.utils.log.AdminEmailHandler'
  136. }
  137. },
  138. 'loggers': {
  139. 'django.request': {
  140. 'handlers': ['mail_admins'],
  141. 'level': 'ERROR',
  142. 'propagate': True,
  143. },
  144. }
  145. }
  146. AUTHENTICATION_BACKENDS = (
  147. 'django_ldapbackend.LDAPBackend',
  148. 'django.contrib.auth.backends.ModelBackend',
  149. )
  150. # Required
  151. AUTH_LDAP_SERVER = '127.0.0.1' # Hostname
  152. AUTH_LDAP_BASE_USER = "cn=admin,o=ILLYSE,l=Villeurbanne,st=RHA,c=FR" # Administrative User's Username
  153. AUTH_LDAP_BASE_PASS = "admin" # Administrative User's Password
  154. AUTH_LDAP_BASE_DN = "ou=users,o=ILLYSE,l=Villeurbanne,st=RHA,c=FR" # Base DN (also accepts o=example.com format)
  155. AUTH_LDAP_FIELD_DOMAIN = "illyse.net" # Domain from which users will take the domain for dummy e-mail generation (it keeps Django happy!)
  156. AUTH_LDAP_GROUP_NAME = "ldap_people" # Django group for LDAP users (helps us manage them for password changing, etc.)
  157. AUTH_LDAP_VERSION = 3 # LDAP version
  158. AUTH_LDAP_OLDPW = False # Can the server take the old password? True/False
  159. # Optional
  160. AUTH_LDAP_FIELD_USERAUTH = "uid" # The field from which the user authentication shall be done.
  161. AUTH_LDAP_FIELD_AUTHUNIT = "inetOrgPerson" # The organisational unit in which your users shall be found.
  162. AUTH_LDAP_FIELD_USERNAME = "uid" # The field from which to draw the username (Default 'uid'). (Allows non-uid/non-dn custom fields to be used for login.)
  163. AUTH_LDAP_WITHDRAW_EMAIL = False # Should django try the directory for the user's email ('mail')? True/False.