From ea28f9b30368182d046d2d4451aece5e733c9e6b Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Thu, 2 Apr 2026 12:15:53 -0500 Subject: [PATCH] changed port --- modules/core/sovran-hub.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index 8765722..ead8070 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -95,7 +95,7 @@ import uvicorn uvicorn.run( "sovran_systemsos_web.server:app", host="0.0.0.0", - port=8080, + port=8937, log_level="info", ) LAUNCHER @@ -130,6 +130,6 @@ in }; # ── Open firewall port ───────────────────────────────────── - networking.firewall.allowedTCPPorts = [ 8080 ]; + networking.firewall.allowedTCPPorts = [ 8937 ]; }; }