diff options
author | rowanv <rrvspam@gmail.com> | 2016-01-24 22:26:11 +0100 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2016-02-01 10:42:05 -0500 |
commit | a6ef025dfb2a1d1bd23893408eef6d066fb506d9 (patch) | |
tree | b29b3624a20cc65184c743102e0f5f620412105f /docs/howto/deployment | |
parent | 8bf8d0e0ecc1805480deb94feb4675b09d3b3a95 (diff) | |
download | django-a6ef025dfb2a1d1bd23893408eef6d066fb506d9.tar.gz |
Fixed #26124 -- Added missing code formatting to docs headers.
Diffstat (limited to 'docs/howto/deployment')
-rw-r--r-- | docs/howto/deployment/wsgi/apache-auth.txt | 8 | ||||
-rw-r--r-- | docs/howto/deployment/wsgi/modwsgi.txt | 14 |
2 files changed, 11 insertions, 11 deletions
diff --git a/docs/howto/deployment/wsgi/apache-auth.txt b/docs/howto/deployment/wsgi/apache-auth.txt index f27792595b..9246c081e7 100644 --- a/docs/howto/deployment/wsgi/apache-auth.txt +++ b/docs/howto/deployment/wsgi/apache-auth.txt @@ -25,8 +25,8 @@ version >= 2.2 and mod_wsgi >= 2.0. For example, you could: .. _Subversion: http://subversion.tigris.org/ .. _mod_dav: https://httpd.apache.org/docs/2.2/mod/mod_dav.html -Authentication with mod_wsgi -============================ +Authentication with ``mod_wsgi`` +================================ .. note:: @@ -100,8 +100,8 @@ details and information about alternative methods of authentication. .. _Defining Application Groups: https://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#Defining_Application_Groups .. _access control mechanisms documentation: https://code.google.com/p/modwsgi/wiki/AccessControlMechanisms -Authorization with mod_wsgi and Django groups ---------------------------------------------- +Authorization with ``mod_wsgi`` and Django groups +------------------------------------------------- mod_wsgi also provides functionality to restrict a particular location to members of a group. diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt index d42569e076..a3d5e8a571 100644 --- a/docs/howto/deployment/wsgi/modwsgi.txt +++ b/docs/howto/deployment/wsgi/modwsgi.txt @@ -1,6 +1,6 @@ -========================================== -How to use Django with Apache and mod_wsgi -========================================== +============================================== +How to use Django with Apache and ``mod_wsgi`` +============================================== Deploying Django with Apache_ and `mod_wsgi`_ is a tried and tested way to get Django into production. @@ -91,8 +91,8 @@ should put in this file, and what else you can add to it. See the :ref:`unicode-files` section of the Unicode reference guide for details. -Using a virtualenv -================== +Using a ``virtualenv`` +====================== If you install your project's Python dependencies inside a `virtualenv`_, you'll need to add the path to this virtualenv's ``site-packages`` directory to @@ -113,8 +113,8 @@ Make sure you give the correct path to your virtualenv, and replace .. _daemon-mode: -Using mod_wsgi daemon mode -========================== +Using ``mod_wsgi`` daemon mode +============================== "Daemon mode" is the recommended mode for running mod_wsgi (on non-Windows platforms). To create the required daemon process group and delegate the |