From 6aa5a7b02500a6dacf1451fd13b6470a54cbfd57 Mon Sep 17 00:00:00 2001 From: Julian Appel Date: Wed, 19 Aug 2026 20:39:27 +0200 Subject: [PATCH] Standardport wieder 3000, Port 80 per Umgebungsvariable Port 80 stammt aus dem Kiosk-Setup auf dem Pi, wo Chromium die Seite ohne Portangabe unter http://localhost oeffnet. Als Default erzwingt er lokal erhoehte Rechte. Auf dem Pi stattdessen PORT=80 setzen. Co-Authored-By: Claude Opus 5 --- scoreboard/bin/www | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scoreboard/bin/www b/scoreboard/bin/www index eec0010..95be052 100644 --- a/scoreboard/bin/www +++ b/scoreboard/bin/www @@ -12,7 +12,7 @@ var http = require('http'); * Get port from environment and store in Express. */ -var port = normalizePort(process.env.PORT || '80'); +var port = normalizePort(process.env.PORT || '3000'); app.set('port', port); /**