{% set log_dir = '/var/log/kolla/nova' %} {% if nova_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 nova_install_type == 'binary' else '/var/lib/kolla/venv/bin' %} Listen {{ api_interface_address }}:{{ placement_api_listen_port }} ServerSignature Off ServerTokens Prod TraceEnable off WSGIDaemonProcess placement-api processes={{ openstack_service_workers }} threads=1 user=nova group=nova display-name=%{GROUP} python-path={{ python_path }} WSGIProcessGroup placement-api {% if kolla_install_type == 'binary' and kolla_base_distro == 'ubuntu' %} WSGIScriptAlias / {{ wsgi_directory }}/python3-nova-placement-api {% else %} WSGIScriptAlias / {{ wsgi_directory }}/nova-placement-api {% endif %} WSGIApplicationGroup %{GLOBAL} WSGIPassAuthorization On = 2.4> ErrorLogFormat "%{cu}t %M" 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 {% if kolla_install_type == 'binary' and kolla_base_distro == 'ubuntu' %} {% else %} {% endif %} Require all granted