summaryrefslogtreecommitdiff
path: root/docs/howto/deployment
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-12-19 16:25:57 +0100
committerClaude Paroz <claude@2xlibre.net>2014-12-19 18:07:52 +0100
commit0a4b04fc23356aa6970ca1b17cb5e6955b108289 (patch)
treee1e95b2272cf770afeb07deb26126f27bf36d4f1 /docs/howto/deployment
parent742fba94554818a988fe1e6cc8aa547831cca872 (diff)
Used https for most *.python.org links
Diffstat (limited to 'docs/howto/deployment')
-rw-r--r--docs/howto/deployment/checklist.txt2
-rw-r--r--docs/howto/deployment/wsgi/index.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/deployment/checklist.txt b/docs/howto/deployment/checklist.txt
index d7cffdd3b2..4697a3625d 100644
--- a/docs/howto/deployment/checklist.txt
+++ b/docs/howto/deployment/checklist.txt
@@ -253,4 +253,4 @@ drastically increase CPU usage by causing worst-case performance when
creating ``dict`` instances. See `oCERT advisory #2011-003
<http://www.ocert.org/advisories/ocert-2011-003.html>`_ for more information.
-.. _-r: http://docs.python.org/2.7/using/cmdline.html#cmdoption-R
+.. _-r: https://docs.python.org/using/cmdline.html#cmdoption-R
diff --git a/docs/howto/deployment/wsgi/index.txt b/docs/howto/deployment/wsgi/index.txt
index 337db7abd1..128e296ad6 100644
--- a/docs/howto/deployment/wsgi/index.txt
+++ b/docs/howto/deployment/wsgi/index.txt
@@ -80,7 +80,7 @@ You could also replace the Django WSGI application with a custom WSGI
application that later delegates to the Django WSGI application, if you want
to combine a Django application with a WSGI application of another framework.
-.. _`WSGI middleware`: http://www.python.org/dev/peps/pep-3333/#middleware-components-that-play-both-sides
+.. _`WSGI middleware`: https://www.python.org/dev/peps/pep-3333/#middleware-components-that-play-both-sides
.. note::