1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-03 05:25:28 +00:00

Updated Reverse Proxy Help (markdown)

morpheus65535 2020-08-11 07:57:45 -04:00
parent 2108479521
commit 390d00ba8a

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