diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index 2b1fdba16ea390c857c3107bafc3fbdcc571d7aa..f59634c05cd8297177238be1cb650867766d2b74 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -11,6 +11,7 @@ Unreleased
 
 Changes
 ~~~~~~~
+
 * The frontend is now able to display headings in the main toolbar.
 
 Fixed
@@ -20,6 +21,7 @@ Fixed
 * In some cases, some items in the sidenav menu were not shown due to its height being higher than the visible page area.
 * The search bar in the sidenav menu is shown even though the user has no permission to see it.
 * Add permission check to accept invitation menu point in order to hide it when this feature is disabled.
+* Metrics endpoint for Prometheus was at the wrong URL.
 
 `3.0`_ - 2022-05-11
 -------------------
diff --git a/aleksis/core/urls.py b/aleksis/core/urls.py
index 9792fcb75cd1e7197cda1f1e6707c3eb42ed1d3e..cc5d954523b331e02b02082014a911d76640ec00 100644
--- a/aleksis/core/urls.py
+++ b/aleksis/core/urls.py
@@ -42,11 +42,11 @@ urlpatterns = [
     ),
     path("oauth/", include("oauth2_provider.urls", namespace="oauth2_provider")),
     path("system_status/", views.SystemStatusAPIView.as_view(), name="system_status_api"),
+    path("", include("django_prometheus.urls")),
     path(
         "django/",
         include(
             [
-                path("", include("django_prometheus.urls")),
                 path("account/login/", views.LoginView.as_view(), name="login"),
                 path(
                     "accounts/signup/", views.AccountRegisterView.as_view(), name="account_signup"