27 lines
787 B
Plaintext
27 lines
787 B
Plaintext
# OpenStack placement-api Apache2 configuration
|
|
Listen 8778
|
|
|
|
<VirtualHost *:8778>
|
|
WSGIDaemonProcess openstack-placement-api processes=2 threads=1 user=placement group=placement
|
|
WSGIProcessGroup openstack-placement-api
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIScriptAlias / /usr/bin/placement-api
|
|
WSGIPassAuthorization On
|
|
LimitRequestBody 114688
|
|
<IfVersion >= 2.4>
|
|
ErrorLogFormat "%{cu}t %M"
|
|
</IfVersion>
|
|
ErrorLog /var/log/placement/placement-api.log
|
|
CustomLog /var/log/placement/placement-api.log combined
|
|
|
|
<Directory /usr/bin>
|
|
<IfVersion >= 2.4>
|
|
Require all granted
|
|
</IfVersion>
|
|
<IfVersion < 2.4>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfVersion>
|
|
</Directory>
|
|
</VirtualHost>
|