From b3aca145ad0e82032f1afdc1e65f38f401182769 Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Fri, 4 Oct 2013 15:12:25 -0400 Subject: [PATCH] Apache http server 2.4 changes authz syntax Change-Id: I5827078eaed7d57a2f4594b7dbc48271d3ed0c18 --- doc/common/section_dashboard-configure-https.xml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/common/section_dashboard-configure-https.xml b/doc/common/section_dashboard-configure-https.xml index 8e59546c8a..79287f14b0 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