diff --git a/ansible/roles/gnocchi/templates/wsgi-gnocchi.conf.j2 b/ansible/roles/gnocchi/templates/wsgi-gnocchi.conf.j2
index 421bb7f0e4..672016c9f3 100644
--- a/ansible/roles/gnocchi/templates/wsgi-gnocchi.conf.j2
+++ b/ansible/roles/gnocchi/templates/wsgi-gnocchi.conf.j2
@@ -28,11 +28,7 @@ LogLevel info
   WSGIApplicationGroup %{GLOBAL}
   WSGIDaemonProcess gnocchi group=gnocchi processes={{ openstack_service_workers }} threads=1 user=gnocchi python-path={{ python_path }}
   WSGIProcessGroup gnocchi
-{% if gnocchi_install_type == 'binary' and kolla_base_distro in ['debian', 'ubuntu'] %}
-  WSGIScriptAlias / "{{ wsgi_path }}/python3-gnocchi-api"
-{% else %}
   WSGIScriptAlias / "{{ wsgi_path }}/gnocchi-api"
-{% endif %}
 
   <Directory "{{ wsgi_path }}">
         Require all granted
diff --git a/releasenotes/notes/fixes-gnocchi-script-name-e4715e3b9fc5b021.yaml b/releasenotes/notes/fixes-gnocchi-script-name-e4715e3b9fc5b021.yaml
new file mode 100644
index 0000000000..41a46fc4b1
--- /dev/null
+++ b/releasenotes/notes/fixes-gnocchi-script-name-e4715e3b9fc5b021.yaml
@@ -0,0 +1,5 @@
+---
+fixes:
+  - |
+    Fixes gnocchi-api script name for Ubuntu/Debian binary deployments.
+    `LP#1861688 <https://bugs.launchpad.net/kolla-ansible/+bug/1861688>`__