summaryrefslogtreecommitdiff
path: root/docs/howto/deployment
diff options
context:
space:
mode:
authorMads Jensen <mje@inducks.org>2018-11-10 23:40:50 +0100
committerTim Graham <timograham@gmail.com>2018-11-10 17:40:50 -0500
commit961f8e99850ecb334d63a943b53b3cb1180ef538 (patch)
tree932e0047889167ab3245fc3e3127648b957b7e99 /docs/howto/deployment
parentd293d68f6a6d3b8006c919c54729a724835321a4 (diff)
Updated some links to https and new locations.
Diffstat (limited to 'docs/howto/deployment')
-rw-r--r--docs/howto/deployment/wsgi/index.txt2
-rw-r--r--docs/howto/deployment/wsgi/modwsgi.txt4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/howto/deployment/wsgi/index.txt b/docs/howto/deployment/wsgi/index.txt
index 282ab10af6..b49de1ec9f 100644
--- a/docs/howto/deployment/wsgi/index.txt
+++ b/docs/howto/deployment/wsgi/index.txt
@@ -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,
diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt
index 217a3c7709..c2e74d3bae 100644
--- a/docs/howto/deployment/wsgi/modwsgi.txt
+++ b/docs/howto/deployment/wsgi/modwsgi.txt
@@ -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