2ad8776ece
Since pbr 1.4.0, wsgi_scripts entrypoing is supported and it will generated a wsgi compatible binary file. Change-Id: I4192258226ec94b667913fd6fe099c4923145ea7
26 lines
1.0 KiB
Django/Jinja
26 lines
1.0 KiB
Django/Jinja
{% set python_path = '/usr/lib/python2.7/site-packages' if kolla_install_type == 'binary' else '/var/lib/kolla/venv/lib/python2.7/site-packages' %}
|
|
{% set binary_path = '/usr/bin' if kolla_install_type == 'binary' else '/var/lib/kolla/venv/bin' %}
|
|
Listen {{ api_interface_address }}:{{ cloudkitty_api_port }}
|
|
|
|
ServerSignature Off
|
|
ServerTokens Prod
|
|
TraceEnable off
|
|
|
|
<VirtualHost *:{{ cloudkitty_api_port }}>
|
|
|
|
ErrorLog "/var/log/kolla/cloudkitty/cloudkitty-api-error.log"
|
|
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b %D \"%{Referer}i\" \"%{User-Agent}i\"" logformat
|
|
CustomLog "/var/log/kolla/cloudkitty/cloudkitty-api-access.log" logformat
|
|
WSGIApplicationGroup %{GLOBAL}
|
|
WSGIDaemonProcess cloudkitty group=cloudkitty processes={{ openstack_service_workers }} threads=1 user=cloudkitty python-path={{ python_path }}
|
|
WSGIProcessGroup cloudkitty
|
|
WSGIScriptAlias / "{{ binary_path }}/cloudkitty-api"
|
|
|
|
<Directory "{{ binary_path }}">
|
|
<FilesMatch "^cloudkitty-api$">
|
|
Require all granted
|
|
</FilesMatch>
|
|
</Directory>
|
|
|
|
</VirtualHost>
|