Updated some links to https and new locations.

This commit is contained in:
Mads Jensen 2018-11-10 23:40:50 +01:00 committed by Tim Graham
parent d293d68f6a
commit 961f8e9985
6 changed files with 11 additions and 11 deletions

View file

@ -5,7 +5,7 @@ How to deploy with WSGI
Django's primary deployment platform is WSGI_, the Python standard for web
servers and applications.
.. _WSGI: http://www.wsgi.org
.. _WSGI: https://wsgi.readthedocs.io/en/latest/
Django's :djadmin:`startproject` management command sets up a simple default
WSGI configuration for you, which you can tweak as needed for your project,

View file

@ -6,13 +6,13 @@ Deploying Django with Apache_ and `mod_wsgi`_ is a tried and tested way to get
Django into production.
.. _Apache: https://httpd.apache.org/
.. _mod_wsgi: http://www.modwsgi.org/
.. _mod_wsgi: https://modwsgi.readthedocs.io/en/develop/
mod_wsgi is an Apache module which can host any Python WSGI_ application,
including Django. Django will work with any version of Apache which supports
mod_wsgi.
.. _WSGI: http://www.wsgi.org
.. _WSGI: https://wsgi.readthedocs.io/en/latest/
The `official mod_wsgi documentation`_ is your source for all the details about
how to use mod_wsgi. You'll probably want to start with the `installation and