Update radarr.subfolder.conf.sample

This commit is contained in:
Giovanni Palma 2022-01-28 08:40:14 +01:00 committed by GitHub
commit dc45fe1bc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,11 @@
## Version 2021/05/18
# first go into radarr settings, under "General" set the URL Base to /radarr and restart the radarr container
location ^~ /radarr {
location /radarr {
return 301 $scheme://$host/radarr/;
}
location ^~ /radarr/ {
# enable the next two lines for http auth
#auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd;