From 5096bccce99dded7e777351d9fee0fba862efb53 Mon Sep 17 00:00:00 2001 From: PrivatePasta <63346955+PrivatePasta@users.noreply.github.com> Date: Wed, 13 Sep 2023 17:51:37 +0530 Subject: [PATCH] Update prowlarr.subfolder.conf.sample Downloads through Radarr seems to make requests to Prowlarr at /download instead of /api. In the old config, if the Authelia config is enabled, these /download requests would be blocked by Authelia --- prowlarr.subfolder.conf.sample | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/prowlarr.subfolder.conf.sample b/prowlarr.subfolder.conf.sample index b67d44e..cb37349 100644 --- a/prowlarr.subfolder.conf.sample +++ b/prowlarr.subfolder.conf.sample @@ -1,4 +1,4 @@ -## Version 2023/02/05 +## Version 2023/09/13 # make sure that your prowlarr container is named prowlarr # make sure that prowlarr is set to work with the base url /prowlarr/ @@ -34,3 +34,13 @@ location ~ /prowlarr(/[0-9]+)?/api { proxy_pass $upstream_proto://$upstream_app:$upstream_port; } + +location ~ /prowlarr(/[0-9]+)?/download { + include /config/nginx/proxy.conf; + include /config/nginx/resolver.conf; + set $upstream_app prowlarr; + set $upstream_port 9696; + set $upstream_proto http; + proxy_pass $upstream_proto://$upstream_app:$upstream_port; + +}