From 2335ccddaa6ce30c0f53690d740f520fd6e0361c Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Fri, 26 Feb 2021 15:12:58 +0100 Subject: [PATCH] root: add fallback URL for websocket --- authentik/root/urls.py | 1 + 1 file changed, 1 insertion(+) diff --git a/authentik/root/urls.py b/authentik/root/urls.py index 5b9d77ddb..6e82e195f 100644 --- a/authentik/root/urls.py +++ b/authentik/root/urls.py @@ -58,6 +58,7 @@ urlpatterns += [ path("administration/django/", admin.site.urls), path("metrics/", MetricsView.as_view(), name="metrics"), path("-/health/live/", LiveView.as_view(), name="health-live"), + path("ws/client/", LiveView.as_view(), name="ws-client-fallback"), path("-/health/ready/", ReadyView.as_view(), name="health-ready"), path("-/jsi18n/", JavaScriptCatalog.as_view(), name="javascript-catalog"), ]