Skip to content
Snippets Groups Projects
Commit f6d59191 authored by Michal Arbet's avatar Michal Arbet Committed by Radosław Piliszek
Browse files

Fix aodh wsgi config file in Debuntu binary

This patch is fixing file path for WSGIScriptAlias
as debian/ubuntu binary packages installs /usr/bin/aodh-api
as it is in source images also. For details please check
LP bug report.

Closes-Bug: #1953059
Change-Id: I9efe73193bf828b084c2844be73c9813a969c9c7
parent 4ebdf547
No related branches found
No related tags found
No related merge requests found
...@@ -34,9 +34,5 @@ LogLevel info ...@@ -34,9 +34,5 @@ LogLevel info
WSGIApplicationGroup %{GLOBAL} WSGIApplicationGroup %{GLOBAL}
WSGIDaemonProcess aodh group=aodh processes={{ openstack_service_workers }} threads=1 user=aodh WSGIDaemonProcess aodh group=aodh processes={{ openstack_service_workers }} threads=1 user=aodh
WSGIProcessGroup aodh WSGIProcessGroup aodh
{% if aodh_install_type == 'binary' and kolla_base_distro in ['debian', 'ubuntu'] %}
WSGIScriptAlias / "{{ binary_path }}/python3-aodh-api"
{% else %}
WSGIScriptAlias / "{{ binary_path }}/aodh-api" WSGIScriptAlias / "{{ binary_path }}/aodh-api"
{% endif %}
</VirtualHost> </VirtualHost>
---
fixes:
- |
Fix the apache's wsgi configuration for the aodh service
in Debuntu binary flavours.
`LP#1953059 <https://launchpad.net/bugs/1953059>`__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment