Fixed #25778 -- Updated docs links to use https when available.

This commit is contained in:
Jon Dufresne 2015-11-29 08:29:46 -08:00 committed by Tim Graham
parent 51a3721372
commit 7aabd62380
66 changed files with 156 additions and 156 deletions

View file

@ -234,7 +234,7 @@ See :doc:`/howto/error-reporting` for details on error reporting by email.
Consider using an error monitoring system such as Sentry_ before your
inbox is flooded by reports. Sentry can also aggregate logs.
.. _Sentry: http://sentry.readthedocs.org/en/latest/
.. _Sentry: https://sentry.readthedocs.org/en/latest/
Customize the default error views
---------------------------------

View file

@ -23,7 +23,7 @@ version >= 2.2 and mod_wsgi >= 2.0. For example, you could:
auth handler if your custom cannot conform to these requirements.
.. _Subversion: http://subversion.tigris.org/
.. _mod_dav: http://httpd.apache.org/docs/2.2/mod/mod_dav.html
.. _mod_dav: https://httpd.apache.org/docs/2.2/mod/mod_dav.html
Authentication with mod_wsgi
============================
@ -98,7 +98,7 @@ The mod_wsgi `access control mechanisms documentation`_ provides additional
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: http://code.google.com/p/modwsgi/wiki/AccessControlMechanisms
.. _access control mechanisms documentation: https://code.google.com/p/modwsgi/wiki/AccessControlMechanisms
Authorization with mod_wsgi and Django groups
---------------------------------------------

View file

@ -5,7 +5,7 @@ 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.
.. _Apache: http://httpd.apache.org/
.. _Apache: https://httpd.apache.org/
.. _mod_wsgi: http://www.modwsgi.org/
mod_wsgi is an Apache module which can host any Python WSGI_ application,
@ -18,8 +18,8 @@ The `official mod_wsgi documentation`_ is fantastic; it's your source for all
the details about how to use mod_wsgi. You'll probably want to start with the
`installation and configuration documentation`_.
.. _official mod_wsgi documentation: http://modwsgi.readthedocs.org/
.. _installation and configuration documentation: http://modwsgi.readthedocs.org/en/develop/installation.html
.. _official mod_wsgi documentation: https://modwsgi.readthedocs.org/
.. _installation and configuration documentation: https://modwsgi.readthedocs.org/en/develop/installation.html
Basic configuration
===================
@ -127,7 +127,7 @@ use ``WSGIPythonPath``; instead you should use the ``python-path`` option to
WSGIProcessGroup example.com
If you want to serve your project in a subdirectory
(``http://example.com/mysite`` in this example), you can add ``WSGIScriptAlias``
(``https://example.com/mysite`` in this example), you can add ``WSGIScriptAlias``
to the configuration above:
.. code-block:: apache
@ -137,7 +137,7 @@ to the configuration above:
See the official mod_wsgi documentation for `details on setting up daemon
mode`_.
.. _details on setting up daemon mode: http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide#Delegation_To_Daemon_Process
.. _details on setting up daemon mode: https://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide#Delegation_To_Daemon_Process
.. _serving-files:
@ -191,12 +191,12 @@ If you are using a version of Apache older than 2.4, replace
``Order deny,allow`` above it.
.. _Nginx: http://wiki.nginx.org/Main
.. _Apache: http://httpd.apache.org/
.. _Apache: https://httpd.apache.org/
.. More details on configuring a mod_wsgi site to serve static files can be found
.. in the mod_wsgi documentation on `hosting static files`_.
.. _hosting static files: http://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#Hosting_Of_Static_Files
.. _hosting static files: https://code.google.com/p/modwsgi/wiki/ConfigurationGuidelines#Hosting_Of_Static_Files
.. _serving-the-admin-files:

View file

@ -7,7 +7,7 @@ How to use Django with uWSGI
uWSGI_ is a fast, self-healing and developer/sysadmin-friendly application
container server coded in pure C.
.. _uWSGI: http://projects.unbit.it/uwsgi/
.. _uWSGI: https://projects.unbit.it/uwsgi/
.. seealso::
@ -30,7 +30,7 @@ command. For example:
$ pip install uwsgi
# Or install LTS (long term support).
$ pip install http://projects.unbit.it/downloads/uwsgi-lts.tar.gz
$ pip install https://projects.unbit.it/downloads/uwsgi-lts.tar.gz
.. _installation procedures: http://uwsgi-docs.readthedocs.org/en/latest/Install.html
@ -50,7 +50,7 @@ uWSGI operates on a client-server model. Your Web server (e.g., nginx, Apache)
communicates with a django-uwsgi "worker" process to serve dynamic content.
See uWSGI's `background documentation`_ for more detail.
.. _background documentation: http://projects.unbit.it/uwsgi/wiki/Background
.. _background documentation: https://projects.unbit.it/uwsgi/wiki/Background
Configuring and starting the uWSGI server for Django
----------------------------------------------------
@ -59,7 +59,7 @@ uWSGI supports multiple ways to configure the process. See uWSGI's
`configuration documentation`_ and `examples`_.
.. _configuration documentation: https://uwsgi.readthedocs.org/en/latest/Configuration.html
.. _examples: http://projects.unbit.it/uwsgi/wiki/Example
.. _examples: https://projects.unbit.it/uwsgi/wiki/Example
Here's an example command to start a uWSGI server::