settings.txt 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248
  1. .. _ref-settings:
  2. Available settings
  3. ==================
  4. Here's a full list of all available settings, in alphabetical order, and their
  5. default values.
  6. .. setting:: ABSOLUTE_URL_OVERRIDES
  7. ABSOLUTE_URL_OVERRIDES
  8. ----------------------
  9. Default: ``{}`` (Empty dictionary)
  10. A dictionary mapping ``"app_label.model_name"`` strings to functions that take
  11. a model object and return its URL. This is a way of overriding
  12. ``get_absolute_url()`` methods on a per-installation basis. Example::
  13. ABSOLUTE_URL_OVERRIDES = {
  14. 'blogs.weblog': lambda o: "/blogs/%s/" % o.slug,
  15. 'news.story': lambda o: "/stories/%s/%s/" % (o.pub_year, o.slug),
  16. }
  17. Note that the model name used in this setting should be all lower-case, regardless
  18. of the case of the actual model class name.
  19. .. setting:: ADMIN_FOR
  20. ADMIN_FOR
  21. ---------
  22. Default: ``()`` (Empty tuple)
  23. Used for admin-site settings modules, this should be a tuple of settings
  24. modules (in the format ``'foo.bar.baz'``) for which this site is an admin.
  25. The admin site uses this in its automatically-introspected documentation of
  26. models, views and template tags.
  27. .. setting:: ADMIN_MEDIA_PREFIX
  28. ADMIN_MEDIA_PREFIX
  29. ------------------
  30. Default: ``'/media/'``
  31. The URL prefix for admin media -- CSS, JavaScript and images used by
  32. the Django administrative interface. Make sure to use a trailing
  33. slash, and to have this be different from the ``MEDIA_URL`` setting
  34. (since the same URL cannot be mapped onto two different sets of
  35. files).
  36. .. setting:: ADMINS
  37. ADMINS
  38. ------
  39. Default: ``()`` (Empty tuple)
  40. A tuple that lists people who get code error notifications. When
  41. ``DEBUG=False`` and a view raises an exception, Django will e-mail these people
  42. with the full exception information. Each member of the tuple should be a tuple
  43. of (Full name, e-mail address). Example::
  44. (('John', 'john@example.com'), ('Mary', 'mary@example.com'))
  45. Note that Django will e-mail *all* of these people whenever an error happens.
  46. See :ref:`howto-error-reporting` for more information.
  47. .. setting:: ALLOWED_INCLUDE_ROOTS
  48. ALLOWED_INCLUDE_ROOTS
  49. ---------------------
  50. Default: ``()`` (Empty tuple)
  51. A tuple of strings representing allowed prefixes for the ``{% ssi %}`` template
  52. tag. This is a security measure, so that template authors can't access files
  53. that they shouldn't be accessing.
  54. For example, if ``ALLOWED_INCLUDE_ROOTS`` is ``('/home/html', '/var/www')``,
  55. then ``{% ssi /home/html/foo.txt %}`` would work, but ``{% ssi /etc/passwd %}``
  56. wouldn't.
  57. .. setting:: APPEND_SLASH
  58. APPEND_SLASH
  59. ------------
  60. Default: ``True``
  61. Whether to append trailing slashes to URLs. This is only used if
  62. ``CommonMiddleware`` is installed (see :ref:`topics-http-middleware`). See also
  63. ``PREPEND_WWW``.
  64. .. setting:: AUTHENTICATION_BACKENDS
  65. AUTHENTICATION_BACKENDS
  66. -----------------------
  67. Default: ``('django.contrib.auth.backends.ModelBackend',)``
  68. A tuple of authentication backend classes (as strings) to use when attempting to
  69. authenticate a user. See the :ref:`authentication backends documentation
  70. <authentication-backends>` for details.
  71. .. setting:: AUTH_PROFILE_MODULE
  72. AUTH_PROFILE_MODULE
  73. -------------------
  74. Default: Not defined
  75. The site-specific user profile model used by this site. See
  76. :ref:`auth-profiles`.
  77. .. setting:: CACHE_BACKEND
  78. CACHE_BACKEND
  79. -------------
  80. Default: ``'locmem://'``
  81. The cache backend to use. See :ref:`topics-cache`.
  82. .. setting:: CACHE_MIDDLEWARE_KEY_PREFIX
  83. CACHE_MIDDLEWARE_KEY_PREFIX
  84. ---------------------------
  85. Default: ``''`` (Empty string)
  86. The cache key prefix that the cache middleware should use. See
  87. :ref:`topics-cache`.
  88. .. setting:: CACHE_MIDDLEWARE_SECONDS
  89. CACHE_MIDDLEWARE_SECONDS
  90. ------------------------
  91. Default: ``600``
  92. The default number of seconds to cache a page when the caching middleware or
  93. ``cache_page()`` decorator is used.
  94. .. setting:: CSRF_COOKIE_NAME
  95. CSRF_COOKIE_NAME
  96. ----------------
  97. Default: ``'csrftoken'``
  98. The name of the cookie to use for the CSRF authentication token. This can be whatever you
  99. want. See :ref:`ref-contrib-csrf`.
  100. .. setting:: CSRF_COOKIE_DOMAIN
  101. CSRF_COOKIE_DOMAIN
  102. ------------------
  103. Default: ``None``
  104. The domain to be used when setting the CSRF cookie. This can be useful for
  105. allowing cross-subdomain requests to be exluded from the normal cross site
  106. request forgery protection. It should be set to a string such as
  107. ``".lawrence.com"`` to allow a POST request from a form on one subdomain to be
  108. accepted by accepted by a view served from another subdomain.
  109. .. setting:: CSRF_FAILURE_VIEW
  110. CSRF_FAILURE_VIEW
  111. -----------------
  112. Default: ``'django.views.csrf.csrf_failure'``
  113. A dotted path to the view function to be used when an incoming request
  114. is rejected by the CSRF protection. The function should have this signature::
  115. def csrf_failure(request, reason="")
  116. where ``reason`` is a short message (intended for developers or logging, not for
  117. end users) indicating the reason the request was rejected. See
  118. :ref:`ref-contrib-csrf`.
  119. .. setting:: DATABASE_ENGINE
  120. DATABASE_ENGINE
  121. ---------------
  122. Default: ``''`` (Empty string)
  123. The database backend to use. The built-in database backends are
  124. ``'postgresql_psycopg2'``, ``'postgresql'``, ``'mysql'``, ``'sqlite3'``, and
  125. ``'oracle'``.
  126. You can use a database backend that doesn't ship with Django by setting
  127. ``DATABASE_ENGINE`` to a fully-qualified path (i.e.
  128. ``mypackage.backends.whatever``). Writing a whole new database backend from
  129. scratch is left as an exercise to the reader; see the other backends for
  130. examples.
  131. .. versionadded:: 1.0
  132. Support for external database backends is new in 1.0.
  133. .. setting:: DATABASE_HOST
  134. DATABASE_HOST
  135. -------------
  136. Default: ``''`` (Empty string)
  137. Which host to use when connecting to the database. An empty string means
  138. localhost. Not used with SQLite.
  139. If this value starts with a forward slash (``'/'``) and you're using MySQL,
  140. MySQL will connect via a Unix socket to the specified socket. For example::
  141. DATABASE_HOST = '/var/run/mysql'
  142. If you're using MySQL and this value *doesn't* start with a forward slash, then
  143. this value is assumed to be the host.
  144. If you're using PostgreSQL, an empty string means to use a Unix domain socket
  145. for the connection, rather than a network connection to localhost. If you
  146. explicitly need to use a TCP/IP connection on the local machine with
  147. PostgreSQL, specify ``localhost`` here.
  148. .. setting:: DATABASE_NAME
  149. DATABASE_NAME
  150. -------------
  151. Default: ``''`` (Empty string)
  152. The name of the database to use. For SQLite, it's the full path to the database
  153. file. When specifying the path, always use forward slashes, even on Windows
  154. (e.g. ``C:/homes/user/mysite/sqlite3.db``).
  155. .. setting:: DATABASE_OPTIONS
  156. DATABASE_OPTIONS
  157. ----------------
  158. Default: ``{}`` (Empty dictionary)
  159. Extra parameters to use when connecting to the database. Consult backend
  160. module's document for available keywords.
  161. .. setting:: DATABASE_PASSWORD
  162. DATABASE_PASSWORD
  163. -----------------
  164. Default: ``''`` (Empty string)
  165. The password to use when connecting to the database. Not used with SQLite.
  166. .. setting:: DATABASE_PORT
  167. DATABASE_PORT
  168. -------------
  169. Default: ``''`` (Empty string)
  170. The port to use when connecting to the database. An empty string means the
  171. default port. Not used with SQLite.
  172. .. setting:: DATABASE_USER
  173. DATABASE_USER
  174. -------------
  175. Default: ``''`` (Empty string)
  176. The username to use when connecting to the database. Not used with SQLite.
  177. .. setting:: DATE_FORMAT
  178. DATE_FORMAT
  179. -----------
  180. Default: ``'N j, Y'`` (e.g. ``Feb. 4, 2003``)
  181. The default formatting to use for date fields on Django admin change-list
  182. pages -- and, possibly, by other parts of the system. See
  183. :ttag:`allowed date format strings <now>`.
  184. See also ``DATETIME_FORMAT``, ``TIME_FORMAT``, ``YEAR_MONTH_FORMAT``
  185. and ``MONTH_DAY_FORMAT``.
  186. .. setting:: DATETIME_FORMAT
  187. DATETIME_FORMAT
  188. ---------------
  189. Default: ``'N j, Y, P'`` (e.g. ``Feb. 4, 2003, 4 p.m.``)
  190. The default formatting to use for datetime fields on Django admin change-list
  191. pages -- and, possibly, by other parts of the system. See
  192. :ttag:`allowed date format strings <now>`.
  193. See also ``DATE_FORMAT``, ``DATETIME_FORMAT``, ``TIME_FORMAT``,
  194. ``YEAR_MONTH_FORMAT`` and ``MONTH_DAY_FORMAT``.
  195. .. setting:: DEBUG
  196. DEBUG
  197. -----
  198. Default: ``False``
  199. A boolean that turns on/off debug mode.
  200. If you define custom settings, `django/views/debug.py`_ has a ``HIDDEN_SETTINGS``
  201. regular expression which will hide from the DEBUG view anything that contains
  202. ``'SECRET'``, ``'PASSWORD'``, or ``'PROFANITIES'``. This allows untrusted users to
  203. be able to give backtraces without seeing sensitive (or offensive) settings.
  204. Still, note that there are always going to be sections of your debug output that
  205. are inappropriate for public consumption. File paths, configuration options, and
  206. the like all give attackers extra information about your server.
  207. It is also important to remember that when running with ``DEBUG`` turned on, Django
  208. will remember every SQL query it executes. This is useful when you are debugging,
  209. but on a production server, it will rapidly consume memory.
  210. Never deploy a site into production with ``DEBUG`` turned on.
  211. .. _django/views/debug.py: http://code.djangoproject.com/browser/django/trunk/django/views/debug.py
  212. DEBUG_PROPAGATE_EXCEPTIONS
  213. --------------------------
  214. .. versionadded:: 1.0
  215. Default: ``False``
  216. If set to True, Django's normal exception handling of view functions
  217. will be suppressed, and exceptions will propagate upwards. This can
  218. be useful for some test setups, and should never be used on a live
  219. site.
  220. .. setting:: DEFAULT_CHARSET
  221. DEFAULT_CHARSET
  222. ---------------
  223. Default: ``'utf-8'``
  224. Default charset to use for all ``HttpResponse`` objects, if a MIME type isn't
  225. manually specified. Used with ``DEFAULT_CONTENT_TYPE`` to construct the
  226. ``Content-Type`` header.
  227. .. setting:: DEFAULT_CONTENT_TYPE
  228. DEFAULT_CONTENT_TYPE
  229. --------------------
  230. Default: ``'text/html'``
  231. Default content type to use for all ``HttpResponse`` objects, if a MIME type
  232. isn't manually specified. Used with ``DEFAULT_CHARSET`` to construct the
  233. ``Content-Type`` header.
  234. .. setting:: DEFAULT_FROM_EMAIL
  235. DEFAULT_FILE_STORAGE
  236. --------------------
  237. Default: ``'django.core.files.storage.FileSystemStorage'``
  238. Default file storage class to be used for any file-related operations that don't
  239. specify a particular storage system. See :ref:`topics-files`.
  240. DEFAULT_FROM_EMAIL
  241. ------------------
  242. Default: ``'webmaster@localhost'``
  243. Default e-mail address to use for various automated correspondence from the
  244. site manager(s).
  245. .. setting:: DEFAULT_TABLESPACE
  246. DEFAULT_TABLESPACE
  247. ------------------
  248. .. versionadded:: 1.0
  249. Default: ``''`` (Empty string)
  250. Default tablespace to use for models that don't specify one, if the
  251. backend supports it.
  252. .. setting:: DEFAULT_INDEX_TABLESPACE
  253. DEFAULT_INDEX_TABLESPACE
  254. ------------------------
  255. .. versionadded:: 1.0
  256. Default: ``''`` (Empty string)
  257. Default tablespace to use for indexes on fields that don't specify
  258. one, if the backend supports it.
  259. .. setting:: DISALLOWED_USER_AGENTS
  260. DISALLOWED_USER_AGENTS
  261. ----------------------
  262. Default: ``()`` (Empty tuple)
  263. List of compiled regular expression objects representing User-Agent strings that
  264. are not allowed to visit any page, systemwide. Use this for bad robots/crawlers.
  265. This is only used if ``CommonMiddleware`` is installed (see
  266. :ref:`topics-http-middleware`).
  267. .. setting:: EMAIL_HOST
  268. EMAIL_HOST
  269. ----------
  270. Default: ``'localhost'``
  271. The host to use for sending e-mail.
  272. See also ``EMAIL_PORT``.
  273. .. setting:: EMAIL_HOST_PASSWORD
  274. EMAIL_HOST_PASSWORD
  275. -------------------
  276. Default: ``''`` (Empty string)
  277. Password to use for the SMTP server defined in ``EMAIL_HOST``. This setting is
  278. used in conjunction with ``EMAIL_HOST_USER`` when authenticating to the SMTP
  279. server. If either of these settings is empty, Django won't attempt
  280. authentication.
  281. See also ``EMAIL_HOST_USER``.
  282. .. setting:: EMAIL_HOST_USER
  283. EMAIL_HOST_USER
  284. ---------------
  285. Default: ``''`` (Empty string)
  286. Username to use for the SMTP server defined in ``EMAIL_HOST``. If empty,
  287. Django won't attempt authentication.
  288. See also ``EMAIL_HOST_PASSWORD``.
  289. .. setting:: EMAIL_PORT
  290. EMAIL_PORT
  291. ----------
  292. Default: ``25``
  293. Port to use for the SMTP server defined in ``EMAIL_HOST``.
  294. .. setting:: EMAIL_SUBJECT_PREFIX
  295. EMAIL_SUBJECT_PREFIX
  296. --------------------
  297. Default: ``'[Django] '``
  298. Subject-line prefix for e-mail messages sent with ``django.core.mail.mail_admins``
  299. or ``django.core.mail.mail_managers``. You'll probably want to include the
  300. trailing space.
  301. .. setting:: EMAIL_USE_TLS
  302. EMAIL_USE_TLS
  303. -------------
  304. .. versionadded:: 1.0
  305. Default: ``False``
  306. Whether to use a TLS (secure) connection when talking to the SMTP server.
  307. .. setting:: FILE_CHARSET
  308. FILE_CHARSET
  309. ------------
  310. .. versionadded:: 1.0
  311. Default: ``'utf-8'``
  312. The character encoding used to decode any files read from disk. This includes
  313. template files and initial SQL data files.
  314. .. setting:: FILE_UPLOAD_HANDLERS
  315. FILE_UPLOAD_HANDLERS
  316. --------------------
  317. .. versionadded:: 1.0
  318. Default::
  319. ("django.core.files.uploadhandler.MemoryFileUploadHandler",
  320. "django.core.files.uploadhandler.TemporaryFileUploadHandler",)
  321. A tuple of handlers to use for uploading. See :ref:`topics-files` for details.
  322. .. setting:: FILE_UPLOAD_MAX_MEMORY_SIZE
  323. FILE_UPLOAD_MAX_MEMORY_SIZE
  324. ---------------------------
  325. .. versionadded:: 1.0
  326. Default: ``2621440`` (i.e. 2.5 MB).
  327. The maximum size (in bytes) that an upload will be before it gets streamed to
  328. the file system. See :ref:`topics-files` for details.
  329. .. setting:: FILE_UPLOAD_TEMP_DIR
  330. FILE_UPLOAD_TEMP_DIR
  331. --------------------
  332. .. versionadded:: 1.0
  333. Default: ``None``
  334. The directory to store data temporarily while uploading files. If ``None``,
  335. Django will use the standard temporary directory for the operating system. For
  336. example, this will default to '/tmp' on \*nix-style operating systems.
  337. See :ref:`topics-files` for details.
  338. .. setting:: FILE_UPLOAD_PERMISSIONS
  339. FILE_UPLOAD_PERMISSIONS
  340. -----------------------
  341. Default: ``None``
  342. The numeric mode (i.e. ``0644``) to set newly uploaded files to. For
  343. more information about what these modes mean, see the `documentation for
  344. os.chmod`_
  345. If this isn't given or is ``None``, you'll get operating-system
  346. dependent behavior. On most platforms, temporary files will have a mode
  347. of ``0600``, and files saved from memory will be saved using the
  348. system's standard umask.
  349. .. warning::
  350. **Always prefix the mode with a 0.**
  351. If you're not familiar with file modes, please note that the leading
  352. ``0`` is very important: it indicates an octal number, which is the
  353. way that modes must be specified. If you try to use ``644``, you'll
  354. get totally incorrect behavior.
  355. .. _documentation for os.chmod: http://docs.python.org/lib/os-file-dir.html
  356. .. setting:: FIXTURE_DIRS
  357. FIXTURE_DIRS
  358. -------------
  359. Default: ``()`` (Empty tuple)
  360. List of locations of the fixture data files, in search order. Note that
  361. these paths should use Unix-style forward slashes, even on Windows. See
  362. :ref:`topics-testing`.
  363. FORCE_SCRIPT_NAME
  364. ------------------
  365. Default: ``None``
  366. If not ``None``, this will be used as the value of the ``SCRIPT_NAME``
  367. environment variable in any HTTP request. This setting can be used to override
  368. the server-provided value of ``SCRIPT_NAME``, which may be a rewritten version
  369. of the preferred value or not supplied at all.
  370. .. setting:: IGNORABLE_404_ENDS
  371. IGNORABLE_404_ENDS
  372. ------------------
  373. Default: ``('mail.pl', 'mailform.pl', 'mail.cgi', 'mailform.cgi', 'favicon.ico', '.php')``
  374. See also ``IGNORABLE_404_STARTS`` and ``Error reporting via e-mail``.
  375. .. setting:: IGNORABLE_404_STARTS
  376. IGNORABLE_404_STARTS
  377. --------------------
  378. Default: ``('/cgi-bin/', '/_vti_bin', '/_vti_inf')``
  379. A tuple of strings that specify beginnings of URLs that should be ignored by
  380. the 404 e-mailer. See ``SEND_BROKEN_LINK_EMAILS``, ``IGNORABLE_404_ENDS`` and
  381. the :ref:`howto-error-reporting`.
  382. .. setting:: INSTALLED_APPS
  383. INSTALLED_APPS
  384. --------------
  385. Default: ``()`` (Empty tuple)
  386. A tuple of strings designating all applications that are enabled in this Django
  387. installation. Each string should be a full Python path to a Python package that
  388. contains a Django application, as created by :djadmin:`django-admin.py startapp
  389. <startapp>`.
  390. .. setting:: INTERNAL_IPS
  391. INTERNAL_IPS
  392. ------------
  393. Default: ``()`` (Empty tuple)
  394. A tuple of IP addresses, as strings, that:
  395. * See debug comments, when ``DEBUG`` is ``True``
  396. * Receive X headers if the ``XViewMiddleware`` is installed (see
  397. :ref:`topics-http-middleware`)
  398. .. setting:: LANGUAGE_CODE
  399. LANGUAGE_CODE
  400. -------------
  401. Default: ``'en-us'``
  402. A string representing the language code for this installation. This should be in
  403. standard language format. For example, U.S. English is ``"en-us"``. See
  404. :ref:`topics-i18n`.
  405. .. setting:: LANGUAGE_COOKIE_NAME
  406. LANGUAGE_COOKIE_NAME
  407. --------------------
  408. .. versionadded:: 1.0
  409. Default: ``'django_language'``
  410. The name of the cookie to use for the language cookie. This can be whatever you
  411. want (but should be different from ``SESSION_COOKIE_NAME``). See
  412. :ref:`topics-i18n`.
  413. .. setting:: LANGUAGES
  414. LANGUAGES
  415. ---------
  416. Default: A tuple of all available languages. This list is continually growing
  417. and including a copy here would inevitably become rapidly out of date. You can
  418. see the current list of translated languages by looking in
  419. ``django/conf/global_settings.py`` (or view the `online source`_).
  420. .. _online source: http://code.djangoproject.com/browser/django/trunk/django/conf/global_settings.py
  421. The list is a tuple of two-tuples in the format (language code, language
  422. name) -- for example, ``('ja', 'Japanese')``. This specifies which languages
  423. are available for language selection. See :ref:`topics-i18n`.
  424. Generally, the default value should suffice. Only set this setting if you want
  425. to restrict language selection to a subset of the Django-provided languages.
  426. If you define a custom ``LANGUAGES`` setting, it's OK to mark the languages as
  427. translation strings (as in the default value displayed above) -- but use a
  428. "dummy" ``gettext()`` function, not the one in ``django.utils.translation``.
  429. You should *never* import ``django.utils.translation`` from within your
  430. settings file, because that module in itself depends on the settings, and that
  431. would cause a circular import.
  432. The solution is to use a "dummy" ``gettext()`` function. Here's a sample
  433. settings file::
  434. gettext = lambda s: s
  435. LANGUAGES = (
  436. ('de', gettext('German')),
  437. ('en', gettext('English')),
  438. )
  439. With this arrangement, ``django-admin.py makemessages`` will still find and
  440. mark these strings for translation, but the translation won't happen at
  441. runtime -- so you'll have to remember to wrap the languages in the *real*
  442. ``gettext()`` in any code that uses ``LANGUAGES`` at runtime.
  443. .. setting:: LOCALE_PATHS
  444. LOCALE_PATHS
  445. ------------
  446. Default: ``()`` (Empty tuple)
  447. A tuple of directories where Django looks for translation files.
  448. See :ref:`translations-in-your-own-projects`.
  449. .. setting:: LOGIN_REDIRECT_URL
  450. LOGIN_REDIRECT_URL
  451. ------------------
  452. .. versionadded:: 1.0
  453. Default: ``'/accounts/profile/'``
  454. The URL where requests are redirected after login when the
  455. ``contrib.auth.login`` view gets no ``next`` parameter.
  456. This is used by the :func:`~django.contrib.auth.decorators.login_required`
  457. decorator, for example.
  458. .. setting:: LOGIN_URL
  459. LOGIN_URL
  460. ---------
  461. .. versionadded:: 1.0
  462. Default: ``'/accounts/login/'``
  463. The URL where requests are redirected for login, specially when using the
  464. :func:`~django.contrib.auth.decorators.login_required` decorator.
  465. .. setting:: LOGOUT_URL
  466. LOGOUT_URL
  467. ----------
  468. .. versionadded:: 1.0
  469. Default: ``'/accounts/logout/'``
  470. LOGIN_URL counterpart.
  471. .. setting:: MANAGERS
  472. MANAGERS
  473. --------
  474. Default: ``()`` (Empty tuple)
  475. A tuple in the same format as ``ADMINS`` that specifies who should get
  476. broken-link notifications when ``SEND_BROKEN_LINK_EMAILS=True``.
  477. .. setting:: MEDIA_ROOT
  478. MEDIA_ROOT
  479. ----------
  480. Default: ``''`` (Empty string)
  481. Absolute path to the directory that holds media for this installation.
  482. Example: ``"/home/media/media.lawrence.com/"`` See also ``MEDIA_URL``.
  483. .. setting:: MEDIA_URL
  484. MEDIA_URL
  485. ---------
  486. Default: ``''`` (Empty string)
  487. URL that handles the media served from ``MEDIA_ROOT``.
  488. Example: ``"http://media.lawrence.com"``
  489. Note that this should have a trailing slash if it has a path component.
  490. Good: ``"http://www.example.com/static/"``
  491. Bad: ``"http://www.example.com/static"``
  492. .. setting:: MIDDLEWARE_CLASSES
  493. MIDDLEWARE_CLASSES
  494. ------------------
  495. Default::
  496. ('django.middleware.common.CommonMiddleware',
  497. 'django.contrib.sessions.middleware.SessionMiddleware',
  498. 'django.middleware.csrf.CsrfViewMiddleware',
  499. 'django.contrib.auth.middleware.AuthenticationMiddleware',)
  500. A tuple of middleware classes to use. See :ref:`topics-http-middleware`.
  501. .. setting:: MONTH_DAY_FORMAT
  502. MONTH_DAY_FORMAT
  503. ----------------
  504. Default: ``'F j'``
  505. The default formatting to use for date fields on Django admin change-list
  506. pages -- and, possibly, by other parts of the system -- in cases when only the
  507. month and day are displayed.
  508. For example, when a Django admin change-list page is being filtered by a date
  509. drilldown, the header for a given day displays the day and month. Different
  510. locales have different formats. For example, U.S. English would say
  511. "January 1," whereas Spanish might say "1 Enero."
  512. See :ttag:`allowed date format strings <now>`. See also ``DATE_FORMAT``,
  513. ``DATETIME_FORMAT``, ``TIME_FORMAT`` and ``YEAR_MONTH_FORMAT``.
  514. .. setting:: PREPEND_WWW
  515. PREPEND_WWW
  516. -----------
  517. Default: ``False``
  518. Whether to prepend the "www." subdomain to URLs that don't have it. This is only
  519. used if ``CommonMiddleware`` is installed (see :ref:`topics-http-middleware`).
  520. See also ``APPEND_SLASH``.
  521. .. setting:: PROFANITIES_LIST
  522. PROFANITIES_LIST
  523. ----------------
  524. A tuple of profanities, as strings, that will trigger a validation error when
  525. the ``hasNoProfanities`` validator is called.
  526. We don't list the default values here, because that would be profane. To see
  527. the default values, see the file `django/conf/global_settings.py`_.
  528. .. _django/conf/global_settings.py: http://code.djangoproject.com/browser/django/trunk/django/conf/global_settings.py
  529. .. setting:: ROOT_URLCONF
  530. ROOT_URLCONF
  531. ------------
  532. Default: Not defined
  533. A string representing the full Python import path to your root URLconf. For example:
  534. ``"mydjangoapps.urls"``. Can be overridden on a per-request basis by
  535. setting the attribute ``urlconf`` on the incoming ``HttpRequest``
  536. object. See :ref:`how-django-processes-a-request` for details.
  537. .. setting:: SECRET_KEY
  538. SECRET_KEY
  539. ----------
  540. Default: ``''`` (Empty string)
  541. A secret key for this particular Django installation. Used to provide a seed in
  542. secret-key hashing algorithms. Set this to a random string -- the longer, the
  543. better. ``django-admin.py startproject`` creates one automatically.
  544. .. setting:: SEND_BROKEN_LINK_EMAILS
  545. SEND_BROKEN_LINK_EMAILS
  546. -----------------------
  547. Default: ``False``
  548. Whether to send an e-mail to the ``MANAGERS`` each time somebody visits a
  549. Django-powered page that is 404ed with a non-empty referer (i.e., a broken
  550. link). This is only used if ``CommonMiddleware`` is installed (see
  551. :ref:`topics-http-middleware`. See also ``IGNORABLE_404_STARTS``,
  552. ``IGNORABLE_404_ENDS`` and :ref:`howto-error-reporting`.
  553. .. setting:: SERIALIZATION_MODULES
  554. SERIALIZATION_MODULES
  555. ---------------------
  556. Default: Not defined.
  557. A dictionary of modules containing serializer definitions (provided as
  558. strings), keyed by a string identifier for that serialization type. For
  559. example, to define a YAML serializer, use::
  560. SERIALIZATION_MODULES = { 'yaml' : 'path.to.yaml_serializer' }
  561. .. setting:: SERVER_EMAIL
  562. SERVER_EMAIL
  563. ------------
  564. Default: ``'root@localhost'``
  565. The e-mail address that error messages come from, such as those sent to
  566. ``ADMINS`` and ``MANAGERS``.
  567. .. setting:: SESSION_ENGINE
  568. SESSION_ENGINE
  569. --------------
  570. .. versionadded:: 1.0
  571. Default: ``django.contrib.sessions.backends.db``
  572. Controls where Django stores session data. Valid values are:
  573. * ``'django.contrib.sessions.backends.db'``
  574. * ``'django.contrib.sessions.backends.file'``
  575. * ``'django.contrib.sessions.backends.cache'``
  576. See :ref:`topics-http-sessions`.
  577. .. setting:: SESSION_COOKIE_AGE
  578. SESSION_COOKIE_AGE
  579. ------------------
  580. Default: ``1209600`` (2 weeks, in seconds)
  581. The age of session cookies, in seconds. See :ref:`topics-http-sessions`.
  582. .. setting:: SESSION_COOKIE_DOMAIN
  583. SESSION_COOKIE_DOMAIN
  584. ---------------------
  585. Default: ``None``
  586. The domain to use for session cookies. Set this to a string such as
  587. ``".lawrence.com"`` for cross-domain cookies, or use ``None`` for a standard
  588. domain cookie. See the :ref:`topics-http-sessions`.
  589. .. setting:: SESSION_COOKIE_NAME
  590. SESSION_COOKIE_NAME
  591. -------------------
  592. Default: ``'sessionid'``
  593. The name of the cookie to use for sessions. This can be whatever you want (but
  594. should be different from ``LANGUAGE_COOKIE_NAME``). See the :ref:`topics-http-sessions`.
  595. .. setting:: SESSION_COOKIE_PATH
  596. SESSION_COOKIE_PATH
  597. -------------------
  598. .. versionadded:: 1.0
  599. Default: ``'/'``
  600. The path set on the session cookie. This should either match the URL path of your
  601. Django installation or be parent of that path.
  602. This is useful if you have multiple Django instances running under the same
  603. hostname. They can use different cookie paths, and each instance will only see
  604. its own session cookie.
  605. .. setting:: SESSION_COOKIE_SECURE
  606. SESSION_COOKIE_SECURE
  607. ---------------------
  608. Default: ``False``
  609. Whether to use a secure cookie for the session cookie. If this is set to
  610. ``True``, the cookie will be marked as "secure," which means browsers may
  611. ensure that the cookie is only sent under an HTTPS connection.
  612. See the :ref:`topics-http-sessions`.
  613. .. setting:: SESSION_EXPIRE_AT_BROWSER_CLOSE
  614. SESSION_EXPIRE_AT_BROWSER_CLOSE
  615. -------------------------------
  616. Default: ``False``
  617. Whether to expire the session when the user closes his or her browser.
  618. See the :ref:`topics-http-sessions`.
  619. .. setting:: SESSION_FILE_PATH
  620. SESSION_FILE_PATH
  621. -----------------
  622. .. versionadded:: 1.0
  623. Default: ``None``
  624. If you're using file-based session storage, this sets the directory in
  625. which Django will store session data. See :ref:`topics-http-sessions`. When
  626. the default value (``None``) is used, Django will use the standard temporary
  627. directory for the system.
  628. .. setting:: SESSION_SAVE_EVERY_REQUEST
  629. SESSION_SAVE_EVERY_REQUEST
  630. --------------------------
  631. Default: ``False``
  632. Whether to save the session data on every request. See
  633. :ref:`topics-http-sessions`.
  634. .. setting:: SITE_ID
  635. SITE_ID
  636. -------
  637. Default: Not defined
  638. The ID, as an integer, of the current site in the ``django_site`` database
  639. table. This is used so that application data can hook into specific site(s)
  640. and a single database can manage content for multiple sites.
  641. See :ref:`ref-contrib-sites`.
  642. .. _site framework docs: ../sites/
  643. .. setting:: TEMPLATE_CONTEXT_PROCESSORS
  644. TEMPLATE_CONTEXT_PROCESSORS
  645. ---------------------------
  646. Default::
  647. ("django.core.context_processors.auth",
  648. "django.core.context_processors.debug",
  649. "django.core.context_processors.i18n",
  650. "django.core.context_processors.media")
  651. A tuple of callables that are used to populate the context in ``RequestContext``.
  652. These callables take a request object as their argument and return a dictionary
  653. of items to be merged into the context.
  654. .. setting:: TEMPLATE_DEBUG
  655. TEMPLATE_DEBUG
  656. --------------
  657. Default: ``False``
  658. A boolean that turns on/off template debug mode. If this is ``True``, the fancy
  659. error page will display a detailed report for any ``TemplateSyntaxError``. This
  660. report contains the relevant snippet of the template, with the appropriate line
  661. highlighted.
  662. Note that Django only displays fancy error pages if ``DEBUG`` is ``True``, so
  663. you'll want to set that to take advantage of this setting.
  664. See also ``DEBUG``.
  665. .. setting:: TEMPLATE_DIRS
  666. TEMPLATE_DIRS
  667. -------------
  668. Default: ``()`` (Empty tuple)
  669. List of locations of the template source files, in search order. Note that
  670. these paths should use Unix-style forward slashes, even on Windows.
  671. See :ref:`topics-templates`..
  672. .. setting:: TEMPLATE_LOADERS
  673. TEMPLATE_LOADERS
  674. ----------------
  675. Default::
  676. ('django.template.loaders.filesystem.load_template_source',
  677. 'django.template.loaders.app_directories.load_template_source')
  678. A tuple of callables (as strings) that know how to import templates from
  679. various sources. See :ref:`ref-templates-api`.
  680. .. setting:: TEMPLATE_STRING_IF_INVALID
  681. TEMPLATE_STRING_IF_INVALID
  682. --------------------------
  683. Default: ``''`` (Empty string)
  684. Output, as a string, that the template system should use for invalid (e.g.
  685. misspelled) variables. See :ref:`invalid-template-variables`..
  686. .. setting:: TEST_DATABASE_CHARSET
  687. TEST_DATABASE_CHARSET
  688. ---------------------
  689. .. versionadded:: 1.0
  690. Default: ``None``
  691. The character set encoding used to create the test database. The value of this
  692. string is passed directly through to the database, so its format is
  693. backend-specific.
  694. Supported for the PostgreSQL_ (``postgresql``, ``postgresql_psycopg2``) and MySQL_ (``mysql``) backends.
  695. .. _PostgreSQL: http://www.postgresql.org/docs/8.2/static/multibyte.html
  696. .. _MySQL: http://www.mysql.org/doc/refman/5.0/en/charset-database.html
  697. .. setting:: TEST_DATABASE_COLLATION
  698. TEST_DATABASE_COLLATION
  699. ------------------------
  700. .. versionadded:: 1.0
  701. Default: ``None``
  702. The collation order to use when creating the test database. This value is
  703. passed directly to the backend, so its format is backend-specific.
  704. Only supported for the ``mysql`` backend (see `section 10.3.2`_ of the MySQL
  705. manual for details).
  706. .. _section 10.3.2: http://www.mysql.org/doc/refman/5.0/en/charset-database.html
  707. .. setting:: TEST_DATABASE_NAME
  708. TEST_DATABASE_NAME
  709. ------------------
  710. Default: ``None``
  711. The name of database to use when running the test suite.
  712. If the default value (``None``) is used with the SQLite database engine, the
  713. tests will use a memory resident database. For all other database engines the
  714. test database will use the name ``'test_' + settings.DATABASE_NAME``.
  715. See :ref:`topics-testing`.
  716. .. setting:: TEST_RUNNER
  717. TEST_RUNNER
  718. -----------
  719. Default: ``'django.test.simple.run_tests'``
  720. The name of the method to use for starting the test suite. See
  721. :ref:`topics-testing`.
  722. .. _Testing Django Applications: ../testing/
  723. .. setting:: TIME_FORMAT
  724. TIME_FORMAT
  725. -----------
  726. Default: ``'P'`` (e.g. ``4 p.m.``)
  727. The default formatting to use for time fields on Django admin change-list
  728. pages -- and, possibly, by other parts of the system. See
  729. :ttag:`allowed date format strings <now>`.
  730. See also ``DATE_FORMAT``, ``DATETIME_FORMAT``, ``TIME_FORMAT``,
  731. ``YEAR_MONTH_FORMAT`` and ``MONTH_DAY_FORMAT``.
  732. .. setting:: TIME_ZONE
  733. TIME_ZONE
  734. ---------
  735. Default: ``'America/Chicago'``
  736. A string representing the time zone for this installation. `See available choices`_.
  737. (Note that list of available choices lists more than one on the same line;
  738. you'll want to use just one of the choices for a given time zone. For instance,
  739. one line says ``'Europe/London GB GB-Eire'``, but you should use the first bit
  740. of that -- ``'Europe/London'`` -- as your ``TIME_ZONE`` setting.)
  741. Note that this is the time zone to which Django will convert all dates/times --
  742. not necessarily the timezone of the server. For example, one server may serve
  743. multiple Django-powered sites, each with a separate time-zone setting.
  744. Normally, Django sets the ``os.environ['TZ']`` variable to the time zone you
  745. specify in the ``TIME_ZONE`` setting. Thus, all your views and models will
  746. automatically operate in the correct time zone. However, if you're manually
  747. :ref:`manually configuring settings
  748. <settings-without-django-settings-module>`, Django will *not* touch the ``TZ``
  749. environment variable, and it'll be up to you to ensure your processes are
  750. running in the correct environment.
  751. .. note::
  752. Django cannot reliably use alternate time zones in a Windows environment.
  753. If you're running Django on Windows, this variable must be set to match the
  754. system timezone.
  755. .. _See available choices: http://www.postgresql.org/docs/8.1/static/datetime-keywords.html#DATETIME-TIMEZONE-SET-TABLE
  756. .. setting:: URL_VALIDATOR_USER_AGENT
  757. URL_VALIDATOR_USER_AGENT
  758. ------------------------
  759. Default: ``Django/<version> (http://www.djangoproject.com/)``
  760. The string to use as the ``User-Agent`` header when checking to see if URLs
  761. exist (see the ``verify_exists`` option on :class:`~django.db.models.URLField`).
  762. .. setting:: USE_ETAGS
  763. USE_ETAGS
  764. ---------
  765. Default: ``False``
  766. A boolean that specifies whether to output the "Etag" header. This saves
  767. bandwidth but slows down performance. This is only used if ``CommonMiddleware``
  768. is installed (see :ref:`topics-http-middleware`).
  769. .. setting:: USE_I18N
  770. USE_I18N
  771. --------
  772. Default: ``True``
  773. A boolean that specifies whether Django's internationalization system should be
  774. enabled. This provides an easy way to turn it off, for performance. If this is
  775. set to ``False``, Django will make some optimizations so as not to load the
  776. internationalization machinery.
  777. .. setting:: YEAR_MONTH_FORMAT
  778. YEAR_MONTH_FORMAT
  779. -----------------
  780. Default: ``'F Y'``
  781. The default formatting to use for date fields on Django admin change-list
  782. pages -- and, possibly, by other parts of the system -- in cases when only the
  783. year and month are displayed.
  784. For example, when a Django admin change-list page is being filtered by a date
  785. drilldown, the header for a given month displays the month and the year.
  786. Different locales have different formats. For example, U.S. English would say
  787. "January 2006," whereas another locale might say "2006/January."
  788. See :ttag:`allowed date format strings <now>`. See also ``DATE_FORMAT``,
  789. ``DATETIME_FORMAT``, ``TIME_FORMAT`` and ``MONTH_DAY_FORMAT``.