From 99d61d04f326e13e7de5b20adfc5958b2debf18a Mon Sep 17 00:00:00 2001 From: Mark Rapson Date: Tue, 22 Sep 2026 20:54:33 +0100 Subject: [PATCH] Configure remote player web pairing URL --- docker-compose/.env.remote.example | 3 +++ docker-compose/docker-compose.remote.yml | 1 + 2 files changed, 4 insertions(+) diff --git a/docker-compose/.env.remote.example b/docker-compose/.env.remote.example index ff61915..9d5e653 100644 --- a/docker-compose/.env.remote.example +++ b/docker-compose/.env.remote.example @@ -7,6 +7,9 @@ PULSE_SIGNAGE_SHARED_SECRET="" # Remote player PLAYER_IDENTIFIER="player-remote" +# Public web application URL used for the pairing page in the QR code +WEB_PUBLIC_URL="https://signage.example.com" + # Optional URL used by the kiosk launcher when the remote player is directly reachable PLAYER_PUBLIC_URL="http://remote-player.example.com:8081" diff --git a/docker-compose/docker-compose.remote.yml b/docker-compose/docker-compose.remote.yml index 90abeb0..be7cc54 100644 --- a/docker-compose/docker-compose.remote.yml +++ b/docker-compose/docker-compose.remote.yml @@ -11,6 +11,7 @@ services: - "8081:8081" environment: PLAYER_IDENTIFIER: ${PLAYER_IDENTIFIER:-player-remote} + WEB_PUBLIC_URL: ${WEB_PUBLIC_URL:?WEB_PUBLIC_URL must be set to the public web application URL} PLAYER_PUBLIC_URL: ${PLAYER_PUBLIC_URL:-} BRIDGE_PUBLIC_URL: ${BRIDGE_PUBLIC_URL:?BRIDGE_PUBLIC_URL must be set to a routable bridge URL} PULSE_SIGNAGE_SHARED_SECRET: ${PULSE_SIGNAGE_SHARED_SECRET:-}