Updated Reverse Proxy Help (markdown)

morpheus65535 2020-08-11 07:57:45 -04:00
parent 2108479521
commit 390d00ba8a
1 changed files with 5 additions and 0 deletions

@ -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;
}
}
```