diff --git a/Reverse-Proxy-Help.md b/Reverse-Proxy-Help.md index ee56ba7..1a852ff 100644 --- a/Reverse-Proxy-Help.md +++ b/Reverse-Proxy-Help.md @@ -15,6 +15,11 @@ proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_redirect off; + # Allow the Bazarr API through if you enable Auth on the block above + location /bazarr/api { + auth_request off; + proxy_pass http://127.0.0.1:6767/bazarr/api; + } } ```