Fix permission error when starting placement api
This commit is contained in:
parent
0111b18f34
commit
27cafd4751
@ -8,7 +8,7 @@ in a cloud.
|
||||
|
||||
Name: openstack-placement
|
||||
Version: 5.0.1
|
||||
Release: 1
|
||||
Release: 2
|
||||
Summary: OpenStack Placement
|
||||
License: ASL 2.0
|
||||
URL: http://git.openstack.org/cgit/openstack/placement/
|
||||
@ -246,6 +246,9 @@ exit 0
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Aug 11 2021 liusheng <liusheng2048@gmail.com> - 5.0.1-2
|
||||
- Fix permission error when starting placement api
|
||||
|
||||
* Wed Aug 11 2021 openstack-sig <openstack@openeuler.org>
|
||||
- Update to 5.0.1
|
||||
|
||||
|
||||
@ -13,6 +13,15 @@ Listen 8778
|
||||
#SSLEngine On
|
||||
#SSLCertificateFile ...
|
||||
#SSLCertificateKeyFile ...
|
||||
<Directory /usr/bin>
|
||||
<IfVersion >= 2.4>
|
||||
Require all granted
|
||||
</IfVersion>
|
||||
<IfVersion < 2.4>
|
||||
Order allow,deny
|
||||
Allow from all
|
||||
</IfVersion>
|
||||
</Directory>
|
||||
</VirtualHost>
|
||||
|
||||
Alias /placement-api /usr/bin/placement-api
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user