diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 78b5fd9..e5be2eb 100644
a
|
b
|
MEDIA_ROOT
|
1104 | 1104 | |
1105 | 1105 | Default: ``''`` (Empty string) |
1106 | 1106 | |
1107 | | Absolute path to the directory that holds media for this installation. |
1108 | | Example: ``"/home/media/media.lawrence.com/"`` See also ``MEDIA_URL``. |
| 1107 | Absolute path to the directory that holds media for this installation, used |
| 1108 | for :doc:`managing files </topics/files>`. |
| 1109 | |
| 1110 | Example: ``"/home/media/media.lawrence.com/"`` |
| 1111 | |
| 1112 | See also ``MEDIA_URL``. |
1109 | 1113 | |
1110 | 1114 | .. setting:: MEDIA_URL |
1111 | 1115 | |
… |
… |
MEDIA_URL
|
1114 | 1118 | |
1115 | 1119 | Default: ``''`` (Empty string) |
1116 | 1120 | |
1117 | | URL that handles the media served from ``MEDIA_ROOT``. |
| 1121 | URL that handles the media served from ``MEDIA_ROOT``, used |
| 1122 | for :doc:`managing files </topics/files>`. |
| 1123 | |
1118 | 1124 | Example: ``"http://media.lawrence.com"`` |
1119 | 1125 | |
1120 | 1126 | Note that this should have a trailing slash if it has a path component. |
1121 | 1127 | |
1122 | | Good: ``"http://www.example.com/static/"`` |
1123 | | Bad: ``"http://www.example.com/static"`` |
| 1128 | * Good: ``"http://www.example.com/static/"`` |
| 1129 | * Bad: ``"http://www.example.com/static"`` |
1124 | 1130 | |
1125 | | .. setting:: MIDDLEWARE_CLASSES |
1126 | 1131 | |
1127 | 1132 | MESSAGE_LEVEL |
1128 | 1133 | ------------- |
… |
… |
Default::
|
1161 | 1166 | Sets the mapping of message levels to message tags. See the |
1162 | 1167 | :doc:`messages documentation </ref/contrib/messages>` for more details. |
1163 | 1168 | |
| 1169 | .. setting:: MIDDLEWARE_CLASSES |
| 1170 | |
1164 | 1171 | MIDDLEWARE_CLASSES |
1165 | 1172 | ------------------ |
1166 | 1173 | |