From 207ebdf27ccc8ca874e00a7c0e87de0e41967ae7 Mon Sep 17 00:00:00 2001 From: Marc Methot Date: Wed, 22 Jan 2020 17:33:49 -0500 Subject: [PATCH] Removing USE_SSL parameter from the configuration documentation Change-Id: I15be80d6c02ea2cc1b8434cf930879b782360dd6 Closes-Bug: #1860614 --- doc/source/admin/customize-configure.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/doc/source/admin/customize-configure.rst b/doc/source/admin/customize-configure.rst index 2821c4b387..d71252529e 100644 --- a/doc/source/admin/customize-configure.rst +++ b/doc/source/admin/customize-configure.rst @@ -181,7 +181,6 @@ The standard installation uses a non-encrypted HTTP channel. DEBUG = False TEMPLATE_DEBUG = DEBUG PROD = True - USE_SSL = False SITE_BRANDING = 'OpenStack Dashboard' @@ -320,13 +319,10 @@ Use a domain that fits your current setup. .. code-block:: python - USE_SSL = True CSRF_COOKIE_SECURE = True SESSION_COOKIE_SECURE = True SESSION_COOKIE_HTTPONLY = True - To enable HTTPS, the ``USE_SSL = True`` option is required. - The other options require that HTTPS is enabled; these options defend against cross-site scripting.