summaryrefslogtreecommitdiff
path: root/docs/howto/static-files
diff options
context:
space:
mode:
authorMarkus Holtermann <info@markusholtermann.eu>2021-02-05 18:41:49 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-02-06 13:41:35 +0100
commit50a5f8840fa564dcefdb1fa5c58f06fcd472ee70 (patch)
tree7a5bce946fceb84a0173478364d76275a7359e2b /docs/howto/static-files
parent9d05add447d57d94ec9e9b3daa338d85a29fe083 (diff)
Refs #32394 -- Changed STATIC_URL/MEDIA_URL to relative paths in tests and docs where appropriate.
Diffstat (limited to 'docs/howto/static-files')
-rw-r--r--docs/howto/static-files/index.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt
index 0a0e7bedd0..b90cc42cd6 100644
--- a/docs/howto/static-files/index.txt
+++ b/docs/howto/static-files/index.txt
@@ -16,7 +16,7 @@ Configuring static files
#. In your settings file, define :setting:`STATIC_URL`, for example::
- STATIC_URL = '/static/'
+ STATIC_URL = 'static/'
#. In your templates, use the :ttag:`static` template tag to build the URL for
the given relative path using the configured :setting:`STATICFILES_STORAGE`.
@@ -88,8 +88,8 @@ to ``True``. If you don't have ``django.contrib.staticfiles`` in
This is not suitable for production use! For some common deployment
strategies, see :doc:`/howto/static-files/deployment`.
-For example, if your :setting:`STATIC_URL` is defined as ``/static/``, you can do
-this by adding the following snippet to your urls.py::
+For example, if your :setting:`STATIC_URL` is defined as ``static/``, you can
+do this by adding the following snippet to your urls.py::
from django.conf import settings
from django.conf.urls.static import static
@@ -101,7 +101,7 @@ this by adding the following snippet to your urls.py::
.. note::
This helper function works only in debug mode and only if
- the given prefix is local (e.g. ``/static/``) and not a URL (e.g.
+ the given prefix is local (e.g. ``static/``) and not a URL (e.g.
``http://static.example.com/``).
Also this helper function only serves the actual :setting:`STATIC_ROOT`
@@ -119,7 +119,7 @@ During development, you can serve user-uploaded media files from
This is not suitable for production use! For some common deployment
strategies, see :doc:`/howto/static-files/deployment`.
-For example, if your :setting:`MEDIA_URL` is defined as ``/media/``, you can do
+For example, if your :setting:`MEDIA_URL` is defined as ``media/``, you can do
this by adding the following snippet to your :setting:`ROOT_URLCONF`::
from django.conf import settings
@@ -132,7 +132,7 @@ this by adding the following snippet to your :setting:`ROOT_URLCONF`::
.. note::
This helper function works only in debug mode and only if
- the given prefix is local (e.g. ``/media/``) and not a URL (e.g.
+ the given prefix is local (e.g. ``media/``) and not a URL (e.g.
``http://media.example.com/``).
.. _staticfiles-testing-support: