Apache http server 2.4 changes authz syntax
Change-Id: I5827078eaed7d57a2f4594b7dbc48271d3ed0c18
This commit is contained in:
parent
f1be543ede
commit
b3aca145ad
@ -35,8 +35,12 @@ SESSION_COOKIE_HTTPONLY = True</programlisting>
|
|||||||
WSGIDaemonProcess horizon user=www-data group=www-data processes=3 threads=10
|
WSGIDaemonProcess horizon user=www-data group=www-data processes=3 threads=10
|
||||||
Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/
|
Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/
|
||||||
<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
|
<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
|
||||||
|
# For Apache http server 2.2 and earlier:
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
|
|
||||||
|
# For Apache http server 2.4 and later:
|
||||||
|
# Require all granted
|
||||||
</Directory></programlisting>
|
</Directory></programlisting>
|
||||||
|
|
||||||
<para>After:</para>
|
<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
|
WSGIDaemonProcess horizon user=www-data group=www-data processes=3 threads=10
|
||||||
Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/
|
Alias /static /usr/share/openstack-dashboard/openstack_dashboard/static/
|
||||||
<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
|
<Directory /usr/share/openstack-dashboard/openstack_dashboard/wsgi>
|
||||||
|
# For Apache http server 2.2 and earlier:
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
|
|
||||||
|
# For Apache http server 2.4 and later:
|
||||||
|
# Require all granted
|
||||||
</Directory>
|
</Directory>
|
||||||
</VirtualHost></programlisting>
|
</VirtualHost></programlisting>
|
||||||
<para>In this configuration, Apache listens on the
|
<para>In this configuration, Apache listens on the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user