httpd 2.4 changes authz syntax.
Change-Id: Icaabf700390fde2fea33ebf8093ad4bced161a8b
This commit is contained in:
parent
f1be543ede
commit
e9e9a37be7
@ -152,8 +152,12 @@ server {
|
||||
WSGIDaemonProcess horizon user=<user> group=<group> processes=3 threads=10
|
||||
Alias /static <static files location>
|
||||
<Directory <WSGI dir>>
|
||||
# For http server 2.2 and earlier:
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
|
||||
# Or, in Apache http server 2.4 and later:
|
||||
# Require all granted
|
||||
</Directory>
|
||||
</VirtualHost></screen>
|
||||
<para>Compute API SSL endpoint in Apache2, which needs to be paired with
|
||||
@ -170,8 +174,12 @@ server {
|
||||
WSGIScriptAlias / <WSGI script location>
|
||||
WSGIDaemonProcess osapi user=<user> group=<group> processes=3 threads=10
|
||||
<Directory <WSGI dir>>
|
||||
# For http server 2.2 and earlier:
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
|
||||
# Or, in Apache http server 2.4 and later:
|
||||
# Require all granted
|
||||
</Directory>
|
||||
</VirtualHost></screen>
|
||||
</section>
|
||||
|
Loading…
x
Reference in New Issue
Block a user