From e9f5efe9ce3e28e1b94ff56e3c2a78ad8129d06f Mon Sep 17 00:00:00 2001 From: ta264 Date: Sat, 16 May 2020 22:27:39 +0100 Subject: [PATCH] Updated Health Checks (markdown) --- Health-Checks.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Health-Checks.md b/Health-Checks.md index 3185737..64837d1 100644 --- a/Health-Checks.md +++ b/Health-Checks.md @@ -37,6 +37,22 @@ If you're on linux, you'll probably have to change the home directory for the us The update branch setup in Settings/General is for a previous version of Radarr, therefore the instance will not see correct update information in the System/Updates feed and may not receive new updates when released. +### Could not connect to signalR + +signalR drives the dynamic UI updates, so if your browser cannot connect to signalR on your server you won't see any real time updates in the UI. + +The most common occurrence of this is on V3 combined with an nginx reverse proxy. Nginx requires the following addition to the location block for radarr: + +``` +proxy_http_version 1.1; +proxy_set_header Upgrade $http_upgrade; +proxy_set_header Connection $http_connection; +``` + +Make sure you **do not** include `proxy_set_header Connection "Upgrade";` as suggested by the nginx documentation. **THIS WILL NOT WORK** + +See https://github.com/aspnet/AspNetCore/issues/17081 + ### Download Clients ### #### No download client is available ####