From 859f25f0c11c9ca2ca711ae743c040133cd559f5 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Wed, 9 Sep 2026 02:38:24 +0000 Subject: [PATCH] hub: point RTL credentials at /rtl/ and bump dev version to 0.15.12 Sovran_Bitcoin 0.15.12 serves the RTL UI under /rtl/ (upstream Angular + PathLocationStrategy); the package redirects / to /rtl/ only for the exact root path. Update the Hub's RTL tile so the Tor and Local Network credentials show the canonical /rtl/ URLs (with trailing slash, which the redirect does not cover) instead of relying on the root-path redirect. Bump the dev versions.json fallback for rtl.service from 0.15.10 to 0.15.12 to match the flake (deployed systems already read pkgs.sovran-bitcoin.rtl.version). --- app/sovran_systemsos_web/versions.json | 2 +- modules/core/sovran-hub.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/sovran_systemsos_web/versions.json b/app/sovran_systemsos_web/versions.json index fb7af4b..b076d6c 100644 --- a/app/sovran_systemsos_web/versions.json +++ b/app/sovran_systemsos_web/versions.json @@ -5,7 +5,7 @@ "bitcoind.service": "27.1.0", "electrs.service": "0.10.6", "lnd.service": "0.18.0", - "rtl.service": "0.15.10", + "rtl.service": "0.15.12", "btcpayserver.service": "2.4.2", "albyhub.service": "1.24.0", "mempool.service": "3.2.1", diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index 3deb7ce..5e9c6d1 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -51,8 +51,8 @@ let ]; } { name = "LND"; unit = "lnd.service"; type = "system"; icon = "lnd"; enabled = cfg.services.bitcoin; category = "bitcoin-apps"; credentials = []; } { name = "Ride The Lightning"; unit = "rtl.service"; type = "system"; icon = "rtl"; enabled = cfg.services.bitcoin; category = "bitcoin-apps"; credentials = [ - { label = "Tor Address — Access from anywhere via Tor Browser"; file = "/var/lib/tor/onion/rtl/hostname"; prefix = "http://"; } - { label = "Local Network — Access on your home network only"; file = "/var/lib/secrets/internal-ip"; prefix = "http://"; suffix = ":3051"; } + { label = "Tor Address — Access from anywhere via Tor Browser"; file = "/var/lib/tor/onion/rtl/hostname"; prefix = "http://"; suffix = "/rtl/"; } + { label = "Local Network — Access on your home network only"; file = "/var/lib/secrets/internal-ip"; prefix = "http://"; suffix = ":3051/rtl/"; } { label = "Password"; file = "/etc/nix-bitcoin-secrets/rtl-password"; } { label = "How to Access"; value = "• Tor Address: Open in Tor Browser from any device, anywhere in the world\n• Local Network: Open in any browser, but only when connected to your home network"; } ]; }