fix(https): move Flask backend to 8443 to avoid netns conflict with http service on 8080

This commit is contained in:
2026-05-10 02:31:08 -04:00
parent 44ab42d80c
commit 8d1f26c0c7
2 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ logging.getLogger("werkzeug").setLevel(logging.ERROR)
NODE_NAME = os.environ.get("NODE_NAME", "webserver")
SERVICE_NAME = "https"
LOG_TARGET = os.environ.get("LOG_TARGET", "")
PORT = int(os.environ.get("PORT", "8080"))
PORT = int(os.environ.get("PORT", "8443"))
_SERVER_CHOICES = [
"Apache/2.4.41 (Ubuntu)",