diff --git a/ansible/roles/aodh/templates/wsgi-aodh.conf.j2 b/ansible/roles/aodh/templates/wsgi-aodh.conf.j2
index 86f5d33c21..3099e35106 100644
--- a/ansible/roles/aodh/templates/wsgi-aodh.conf.j2
+++ b/ansible/roles/aodh/templates/wsgi-aodh.conf.j2
@@ -34,9 +34,5 @@ LogLevel info
   WSGIApplicationGroup %{GLOBAL}
   WSGIDaemonProcess aodh group=aodh processes={{ openstack_service_workers }} threads=1 user=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"
-{% endif %}
 </VirtualHost>
diff --git a/releasenotes/notes/fix-aodh-wsgi-config-7679adda584e33bb.yaml b/releasenotes/notes/fix-aodh-wsgi-config-7679adda584e33bb.yaml
new file mode 100644
index 0000000000..07d0373e79
--- /dev/null
+++ b/releasenotes/notes/fix-aodh-wsgi-config-7679adda584e33bb.yaml
@@ -0,0 +1,6 @@
+---
+fixes:
+  - |
+    Fix the apache's wsgi configuration for the aodh service
+    in Debuntu binary flavours.
+    `LP#1953059 <https://launchpad.net/bugs/1953059>`__