r/frigate: Fix Authelia redirect

HTTP 301 is "moved permanently." Browsers will cache this response and
never send the request to the real server again.  We need to use a
temporary redirect, such as "see other" to avoid getting stuck in a
login loop.
unifi-restore
Dustin 2025-04-21 08:27:34 -05:00
parent 113ffa2b96
commit 57c5afc0c8
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
@unauthorized status 401
handle_response @unauthorized {
respond "" 301
respond "" 303
header Location {{ frigate_caddy_forward_auth.url}}{{ frigate_caddy_forward_auth.location }}
}
}