diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2015-11-29 08:29:46 -0800 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-12-01 08:03:16 -0500 |
| commit | bf76cf07e0e0713020974f47dacfaddcedbe1abf (patch) | |
| tree | 25d3659624b41be8315d418c577a7b529b4d8ae6 /docs/howto | |
| parent | b4074102328180dd53ecc5a03b0afa1322024036 (diff) | |
[1.9.x] Fixed #25778 -- Updated docs links to use https when available.
Backport of 7aabd6238028f4bb78d0687bbccc97bcf634e28b from master
Diffstat (limited to 'docs/howto')
| -rw-r--r-- | docs/howto/auth-remote-user.txt | 4 | ||||
| -rw-r--r-- | docs/howto/deployment/checklist.txt | 2 | ||||
| -rw-r--r-- | docs/howto/deployment/wsgi/apache-auth.txt | 4 | ||||
| -rw-r--r-- | docs/howto/deployment/wsgi/modwsgi.txt | 14 | ||||
| -rw-r--r-- | docs/howto/deployment/wsgi/uwsgi.txt | 8 | ||||
| -rw-r--r-- | docs/howto/jython.txt | 6 | ||||
| -rw-r--r-- | docs/howto/static-files/deployment.txt | 2 |
7 files changed, 20 insertions, 20 deletions
diff --git a/docs/howto/auth-remote-user.txt b/docs/howto/auth-remote-user.txt index 34f17a8084..7cc1e1608a 100644 --- a/docs/howto/auth-remote-user.txt +++ b/docs/howto/auth-remote-user.txt @@ -9,10 +9,10 @@ intranet sites, with single sign-on solutions such as IIS and Integrated Windows Authentication or Apache and `mod_authnz_ldap`_, `CAS`_, `Cosign`_, `WebAuth`_, `mod_auth_sspi`_, etc. -.. _mod_authnz_ldap: http://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html +.. _mod_authnz_ldap: https://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html .. _CAS: https://www.apereo.org/projects/cas .. _Cosign: http://weblogin.org -.. _WebAuth: http://www.stanford.edu/services/webauth/ +.. _WebAuth: https://www.stanford.edu/services/webauth/ .. _mod_auth_sspi: http://sourceforge.net/projects/mod-auth-sspi When the Web server takes care of authentication it typically sets the diff --git a/docs/howto/deployment/checklist.txt b/docs/howto/deployment/checklist.txt index 60047e9af7..1331670a13 100644 --- a/docs/howto/deployment/checklist.txt +++ b/docs/howto/deployment/checklist.txt @@ -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 --------------------------------- diff --git a/docs/howto/deployment/wsgi/apache-auth.txt b/docs/howto/deployment/wsgi/apache-auth.txt index eddf784483..f27792595b 100644 --- a/docs/howto/deployment/wsgi/apache-auth.txt +++ b/docs/howto/deployment/wsgi/apache-auth.txt @@ -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 --------------------------------------------- diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt index 90ca1c0527..6e0e966a53 100644 --- a/docs/howto/deployment/wsgi/modwsgi.txt +++ b/docs/howto/deployment/wsgi/modwsgi.txt @@ -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: diff --git a/docs/howto/deployment/wsgi/uwsgi.txt b/docs/howto/deployment/wsgi/uwsgi.txt index 932d16817b..666d735fa2 100644 --- a/docs/howto/deployment/wsgi/uwsgi.txt +++ b/docs/howto/deployment/wsgi/uwsgi.txt @@ -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:: diff --git a/docs/howto/jython.txt b/docs/howto/jython.txt index 0c350ab058..981e43d630 100644 --- a/docs/howto/jython.txt +++ b/docs/howto/jython.txt @@ -26,9 +26,9 @@ If you want to use Django on a production site, use a Java servlet container, such as `Apache Tomcat`_. Full JavaEE applications servers such as `GlassFish`_ or `JBoss`_ are also OK, if you need the extra features they include. -.. _`Apache Tomcat`: http://tomcat.apache.org/ +.. _`Apache Tomcat`: https://tomcat.apache.org/ .. _GlassFish: https://glassfish.java.net/ -.. _JBoss: http://www.jboss.org/ +.. _JBoss: https://www.jboss.org/ Installing Django ================= @@ -71,4 +71,4 @@ running on standard Python. However, are a few differences to keep in mind: * Any part of Django that requires `Pillow`_ will not work. -.. _Pillow: http://pillow.readthedocs.org/en/latest/ +.. _Pillow: https://pillow.readthedocs.org/en/latest/ diff --git a/docs/howto/static-files/deployment.txt b/docs/howto/static-files/deployment.txt index a88403fda8..396c8c85c0 100644 --- a/docs/howto/static-files/deployment.txt +++ b/docs/howto/static-files/deployment.txt @@ -74,7 +74,7 @@ type of web server -- faster but less full-featured. Some common choices are: * A stripped-down version of Apache_ .. _Nginx: http://wiki.nginx.org/Main -.. _Apache: http://httpd.apache.org/ +.. _Apache: https://httpd.apache.org/ Configuring these servers is out of scope of this document; check each server's respective documentation for instructions. |
