summaryrefslogtreecommitdiff
path: root/docs/howto
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-07-29 19:11:42 +0200
committerGitHub <noreply@github.com>2021-07-29 19:11:42 +0200
commitf331eba6d576752dd79c4b37c41d981daa537fe6 (patch)
treec80da626bc6f65524914f117dd0f563577a6c3e6 /docs/howto
parent7c30bdbdb16204970cc320f4345b8a439d8f65b4 (diff)
downloaddjango-f331eba6d576752dd79c4b37c41d981daa537fe6.tar.gz
Refs #32880 -- Made remaining titles consistent in how-to documents.
Follow up to 22fbebc7444c8974f101c146f0fc18fe64ab48f6.
Diffstat (limited to 'docs/howto')
-rw-r--r--docs/howto/deployment/index.txt6
-rw-r--r--docs/howto/deployment/wsgi/apache-auth.txt6
-rw-r--r--docs/howto/static-files/deployment.txt6
-rw-r--r--docs/howto/static-files/index.txt6
4 files changed, 12 insertions, 12 deletions
diff --git a/docs/howto/deployment/index.txt b/docs/howto/deployment/index.txt
index ef55a8dcfa..e2fadba5b9 100644
--- a/docs/howto/deployment/index.txt
+++ b/docs/howto/deployment/index.txt
@@ -1,6 +1,6 @@
-================
-Deploying Django
-================
+====================
+How to deploy Django
+====================
Django is full of shortcuts to make web developers' lives easier, but all
those tools are of no use if you can't easily deploy your sites. Since Django's
diff --git a/docs/howto/deployment/wsgi/apache-auth.txt b/docs/howto/deployment/wsgi/apache-auth.txt
index 912d11830e..85166ffb2d 100644
--- a/docs/howto/deployment/wsgi/apache-auth.txt
+++ b/docs/howto/deployment/wsgi/apache-auth.txt
@@ -1,6 +1,6 @@
-=========================================================
-Authenticating against Django's user database from Apache
-=========================================================
+==============================================================
+How to authenticate against Django's user database from Apache
+==============================================================
Since keeping multiple authentication databases in sync is a common problem when
dealing with Apache, you can configure Apache to authenticate against Django's
diff --git a/docs/howto/static-files/deployment.txt b/docs/howto/static-files/deployment.txt
index 49ac738b29..bd35d13025 100644
--- a/docs/howto/static-files/deployment.txt
+++ b/docs/howto/static-files/deployment.txt
@@ -1,6 +1,6 @@
-======================
-Deploying static files
-======================
+==========================
+How to deploy static files
+==========================
.. seealso::
diff --git a/docs/howto/static-files/index.txt b/docs/howto/static-files/index.txt
index b90cc42cd6..a60f7f5c0e 100644
--- a/docs/howto/static-files/index.txt
+++ b/docs/howto/static-files/index.txt
@@ -1,6 +1,6 @@
-====================================================
-Managing static files (e.g. images, JavaScript, CSS)
-====================================================
+=========================================================
+How to manage static files (e.g. images, JavaScript, CSS)
+=========================================================
Websites generally need to serve additional files such as images, JavaScript,
or CSS. In Django, we refer to these files as "static files". Django provides