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
|
Name: openstack-placement
|
||||||
Version: 5.0.1
|
Version: 5.0.1
|
||||||
Release: 1
|
Release: 2
|
||||||
Summary: OpenStack Placement
|
Summary: OpenStack Placement
|
||||||
License: ASL 2.0
|
License: ASL 2.0
|
||||||
URL: http://git.openstack.org/cgit/openstack/placement/
|
URL: http://git.openstack.org/cgit/openstack/placement/
|
||||||
@ -246,6 +246,9 @@ exit 0
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%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>
|
* Wed Aug 11 2021 openstack-sig <openstack@openeuler.org>
|
||||||
- Update to 5.0.1
|
- Update to 5.0.1
|
||||||
|
|
||||||
|
|||||||
@ -13,6 +13,15 @@ Listen 8778
|
|||||||
#SSLEngine On
|
#SSLEngine On
|
||||||
#SSLCertificateFile ...
|
#SSLCertificateFile ...
|
||||||
#SSLCertificateKeyFile ...
|
#SSLCertificateKeyFile ...
|
||||||
|
<Directory /usr/bin>
|
||||||
|
<IfVersion >= 2.4>
|
||||||
|
Require all granted
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion < 2.4>
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
</IfVersion>
|
||||||
|
</Directory>
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
|
||||||
Alias /placement-api /usr/bin/placement-api
|
Alias /placement-api /usr/bin/placement-api
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user