mirror of https://github.com/django/django.git
Reordered MEDIA_ROOT and MEDIA_URL in global_settings so they're not in the COMMENTS section
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1109 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
af4bef19ad
commit
5defabca11
|
@ -146,6 +146,14 @@ SECRET_KEY = ''
|
||||||
# Path to the "jing" executable -- needed to validate XMLFields
|
# Path to the "jing" executable -- needed to validate XMLFields
|
||||||
JING_PATH = "/usr/bin/jing"
|
JING_PATH = "/usr/bin/jing"
|
||||||
|
|
||||||
|
# Absolute path to the directory that holds media.
|
||||||
|
# Example: "/home/media/media.lawrence.com/"
|
||||||
|
MEDIA_ROOT = ''
|
||||||
|
|
||||||
|
# URL that handles the media served from MEDIA_ROOT.
|
||||||
|
# Example: "http://media.lawrence.com"
|
||||||
|
MEDIA_URL = ''
|
||||||
|
|
||||||
##############
|
##############
|
||||||
# MIDDLEWARE #
|
# MIDDLEWARE #
|
||||||
##############
|
##############
|
||||||
|
@ -203,11 +211,3 @@ COMMENTS_FIRST_FEW = 0
|
||||||
# A tuple of IP addresses that have been banned from participating in various
|
# A tuple of IP addresses that have been banned from participating in various
|
||||||
# Django-powered features.
|
# Django-powered features.
|
||||||
BANNED_IPS = ()
|
BANNED_IPS = ()
|
||||||
|
|
||||||
# Absolute path to the directory that holds media.
|
|
||||||
# Example: "/home/media/media.lawrence.com/"
|
|
||||||
MEDIA_ROOT = ''
|
|
||||||
|
|
||||||
# URL that handles the media served from MEDIA_ROOT.
|
|
||||||
# Example: "http://media.lawrence.com"
|
|
||||||
MEDIA_URL = ''
|
|
||||||
|
|
Loading…
Reference in New Issue