d62ccca3e0
1. The Keystone WSGI scripts don't have a python3- prefix, although they are using python 3. 2. The Placement WSGI script doesn't have a python3- prefix, although it is using python 3. Depends-On: https://review.openstack.org/651327 Change-Id: I805df8f85634edea8322495ca73897d44967cfe6 Closes-Bug: #1823989
33 lines
1.3 KiB
Django/Jinja
33 lines
1.3 KiB
Django/Jinja
{% set log_dir = '/var/log/kolla/placement' %}
|
|
{% if placement_install_type == 'binary' %}
|
|
{% set python_path = '/usr/lib/python3/dist-packages' if kolla_base_distro == 'ubuntu' else '/usr/lib/python2.7/site-packages' %}
|
|
{% else %}
|
|
{% set python_path = '/var/lib/kolla/venv/lib/python2.7/site-packages' %}
|
|
{% endif %}
|
|
{% set wsgi_directory = '/usr/bin' if placement_install_type == 'binary' else '/var/lib/kolla/venv/bin' %}
|
|
|
|
Listen {{ api_interface_address }}:{{ placement_api_listen_port }}
|
|
|
|
ServerSignature Off
|
|
ServerTokens Prod
|
|
TraceEnable off
|
|
|
|
<VirtualHost *:{{ placement_api_listen_port }}>
|
|
WSGIDaemonProcess placement-api processes={{ openstack_service_workers }} threads=1 user=placement group=placement display-name=%{GROUP} python-path={{ python_path }}
|
|
WSGIProcessGroup placement-api
|
|
WSGIScriptAlias / {{ wsgi_directory }}/placement-api
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIPassAuthorization On
|
|
<IfVersion >= 2.4>
|
|
ErrorLogFormat "%{cu}t %M"
|
|
</IfVersion>
|
|
ErrorLog "{{ log_dir }}/placement-api.log"
|
|
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
|
|
CustomLog "{{ log_dir }}/placement-api-access.log" logformat
|
|
<Directory {{ wsgi_directory }}>
|
|
<Files placement-api>
|
|
Require all granted
|
|
</Files>
|
|
</Directory>
|
|
</VirtualHost>
|