Skip to content

Commit 5096bcc

Browse files
authored
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
1 parent 31a3901 commit 5096bcc

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

prowlarr.subfolder.conf.sample

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Version 2023/02/05
1+
## Version 2023/09/13
22
# make sure that your prowlarr container is named prowlarr
33
# make sure that prowlarr is set to work with the base url /prowlarr/
44

@@ -34,3 +34,13 @@ location ~ /prowlarr(/[0-9]+)?/api {
3434
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
3535

3636
}
37+
38+
location ~ /prowlarr(/[0-9]+)?/download {
39+
include /config/nginx/proxy.conf;
40+
include /config/nginx/resolver.conf;
41+
set $upstream_app prowlarr;
42+
set $upstream_port 9696;
43+
set $upstream_proto http;
44+
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
45+
46+
}

0 commit comments

Comments
 (0)