diff --git a/doc/common/section_dashboard-configure-https.xml b/doc/common/section_dashboard-configure-https.xml
index 3246085cfe..675ff211dc 100644
--- a/doc/common/section_dashboard-configure-https.xml
+++ b/doc/common/section_dashboard-configure-https.xml
@@ -35,8 +35,12 @@ SESSION_COOKIE_HTTPONLY = True
WSGIDaemonProcess horizon user=www-data group=www-data processes=3 threads=10
Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/
<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
+# For Apache http server 2.2 and earlier:
Order allow,deny
Allow from all
+
+# For Apache http server 2.4 and later:
+# Require all granted
</Directory>
After:
@@ -72,8 +76,12 @@ WSGIScriptAlias / /usr/share/openstack-dashboard/openstack_dashboard/wsgi/django
WSGIDaemonProcess horizon user=www-data group=www-data processes=3 threads=10
Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/
<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
+# For Apache http server 2.2 and earlier:
Order allow,deny
Allow from all
+
+# For Apache http server 2.4 and later:
+# Require all granted
</Directory>
</VirtualHost>
In this configuration, Apache listens on the