Compare commits

..
3 Commits
Author SHA1 Message Date
ginnoir 12cb5279d0 feat: expose hermes dashboard backend
Deploy Caddyfile to valhalla / deploy (push) Failing after 3m28s
2026-06-21 14:36:39 -05:00
ginnoirandClaude Opus 4.8 466ffe9588 fix(remote): correct hbbs relay flag to lowercase -r
The previous commit used `hbbs -R 192.168.1.69` (uppercase -R sets
rendezvous/cluster servers), so hbbs advertised an empty relay list and
clients failed with "failed to connect to relay server". Lowercase -r is
the relay-server flag; hbbs now advertises 192.168.1.69 and LAN clients
relay correctly.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-18 04:54:04 -05:00
ginnoir 73f25d20a1 fix(remote): add -R 192.168.1.69 to hbbs so relay address is reachable from LAN 2026-06-18 03:48:50 -05:00
2 changed files with 17 additions and 1 deletions
+16
View File
@@ -360,6 +360,22 @@ homarr.ginnoir.com {
reverse_proxy homarr:7575 reverse_proxy homarr:7575
} }
# Hermes Desktop remote backend. Browser UI is SSO-gated; API/WS paths
# are passed through so Desktop clients can authenticate with the Hermes
# dashboard session token instead of an Authentik browser cookie.
hermes.ginnoir.com {
route {
import authentik_outpost
handle /api/* {
reverse_proxy 172.20.0.1:9119
}
handle {
import authentik_forward_auth
reverse_proxy 172.20.0.1:9119
}
}
}
backup.ginnoir.com { backup.ginnoir.com {
route { route {
import authentik_outpost import authentik_outpost
+1 -1
View File
@@ -18,7 +18,7 @@ services:
hbbs: hbbs:
container_name: hbbs container_name: hbbs
image: rustdesk/rustdesk-server:latest image: rustdesk/rustdesk-server:latest
command: hbbs command: hbbs -r 192.168.1.69
restart: unless-stopped restart: unless-stopped
env_file: env_file:
- stack.env - stack.env