diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-31 08:37:46 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-31 08:37:46 +0200 |
| commit | f15442619c8331b806aefa883b7e2a42525aaca5 (patch) | |
| tree | 4bb46fa9e08d40ff79827046a459ec326c82c0c7 | |
| parent | f9efca7e040bba873dcbfc152f3596e090378ab8 (diff) | |
config(relayd): add Jellyfin ports 8096 and 8920 for Android app discovery
Amp-Thread-ID: https://ampcode.com/threads/T-019c12b1-e861-773b-8f74-64b6c2255a5f
Co-authored-by: Amp <amp@ampcode.com>
| -rw-r--r-- | frontends/etc/relayd.conf.tpl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/frontends/etc/relayd.conf.tpl b/frontends/etc/relayd.conf.tpl index 3f7e1bc..9fcb169 100644 --- a/frontends/etc/relayd.conf.tpl +++ b/frontends/etc/relayd.conf.tpl @@ -104,6 +104,31 @@ relay "https6" { forward to <f3s_jellyfin> port 30096 check tcp } +# Jellyfin alternative ports for Android app discovery +relay "jellyfin-8096-ipv4" { + listen on <%= $vio0_ip %> port 8096 tls + protocol "https" + forward to <f3s_jellyfin> port 30096 check tcp +} + +relay "jellyfin-8096-ipv6" { + listen on <%= $ipv6address->($hostname) %> port 8096 tls + protocol "https" + forward to <f3s_jellyfin> port 30096 check tcp +} + +relay "jellyfin-8920-ipv4" { + listen on <%= $vio0_ip %> port 8920 tls + protocol "https" + forward to <f3s_jellyfin> port 30096 check tcp +} + +relay "jellyfin-8920-ipv6" { + listen on <%= $ipv6address->($hostname) %> port 8920 tls + protocol "https" + forward to <f3s_jellyfin> port 30096 check tcp +} + tcp protocol "gemini" { tls keypair foo.zone tls keypair stats.foo.zone |
