diff --git a/bazarr/CHANGELOG.md b/bazarr/CHANGELOG.md index 88d9e3b15..ffdde6af8 100644 --- a/bazarr/CHANGELOG.md +++ b/bazarr/CHANGELOG.md @@ -1,4 +1,8 @@ +## 1.5.6-2 (2026-04-20) +- Add Ingress support with nginx reverse proxy for sidebar integration +- Add connection_mode option (ingress_noauth/noingress_auth/ingress_auth) + ## 1.5.6 (2026-02-28) - Update to latest version from linuxserver/docker-bazarr (changelog : https://github.com/linuxserver/docker-bazarr/releases) diff --git a/bazarr/README.md b/bazarr/README.md index 8f42d6002..c7b2a4df3 100644 --- a/bazarr/README.md +++ b/bazarr/README.md @@ -48,18 +48,26 @@ Configurations can be done through the app webUI, except for the following optio | `PGID` | int | `0` | Group ID for file permissions | | `PUID` | int | `0` | User ID for file permissions | | `TZ` | str | | Timezone (e.g., `Europe/London`) | +| `connection_mode` | list | `ingress_noauth` | Connection mode (ingress_noauth/noingress_auth/ingress_auth) | | `localdisks` | str | | Local drives to mount (e.g., `sda1,sdb1,MYNAS`) | | `networkdisks` | str | | SMB shares to mount (e.g., `//SERVER/SHARE`) | | `cifsusername` | str | | SMB username for network shares | | `cifspassword` | str | | SMB password for network shares | | `cifsdomain` | str | | SMB domain for network shares | +### Connection Modes + +- `ingress_noauth` - Default, disables authentication for seamless ingress integration +- `noingress_auth` - Disables ingress for external URL, enables authentication +- `ingress_auth` - Enables both ingress and authentication + ### Example Configuration ```yaml PGID: 0 PUID: 0 TZ: "Europe/London" +connection_mode: "ingress_noauth" localdisks: "sda1,sdb1" networkdisks: "//192.168.1.100/media,//nas.local/subtitles" cifsusername: "mediauser"