Merge "Apache http server 2.4 changes authz syntax"
This commit is contained in:
commit
192cf6d68d
@ -35,8 +35,12 @@ SESSION_COOKIE_HTTPONLY = True</programlisting>
|
||||
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></programlisting>
|
||||
|
||||
<para>After:</para>
|
||||
@ -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></programlisting>
|
||||
<para>In this configuration, Apache listens on the
|
||||
|
Loading…
Reference in New Issue
Block a user