Merge "Use the pbr generated wsgi binary file located in binary folder"

This commit is contained in:
Zuul 2018-03-29 12:06:05 +00:00 committed by Gerrit Code Review
commit 25d03793ec

@ -1,4 +1,5 @@
{% 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
@ -13,10 +14,12 @@ TraceEnable off
WSGIApplicationGroup %{GLOBAL}
WSGIDaemonProcess cloudkitty group=cloudkitty processes={{ openstack_service_workers }} threads=1 user=cloudkitty python-path={{ python_path }}
WSGIProcessGroup cloudkitty
WSGIScriptAlias / "{{ python_path }}/cloudkitty/api/app.wsgi"
WSGIScriptAlias / "{{ binary_path }}/cloudkitty-api"
<Directory "{{ python_path }}/cloudkitty/api">
Require all granted
<Directory "{{ binary_path }}">
<FilesMatch "^cloudkitty-api$">
Require all granted
</FilesMatch>
</Directory>
</VirtualHost>