diff --git a/doc/config-reference/source/dashboard/configure.rst b/doc/config-reference/source/dashboard/configure.rst index b50aba2b94..baafde36c4 100644 --- a/doc/config-reference/source/dashboard/configure.rst +++ b/doc/config-reference/source/dashboard/configure.rst @@ -239,11 +239,26 @@ Use a domain that fits your current setup. Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/ # For Apache http server 2.2 and earlier: - Order allow,deny - Allow from all - + + Order allow,deny + Allow from all + # For Apache http server 2.4 and later: - # Require all granted + =2.4> + #The following two lines have been added by bms for error "AH01630: client denied + #by server configuration: + #/usr/share/openstack-dashboard/openstack_dashboard/static/dashboard/cssa" + Options All + AllowOverride All + Require all granted + + + + =2.4> + Options All + AllowOverride All + Require all granted +