Use environment variables for ports in web app

This commit is contained in:
thiloho
2024-08-10 22:20:57 +02:00
parent 0866e2631d
commit 162118bb56
23 changed files with 347 additions and 223 deletions

View File

@@ -30,13 +30,18 @@
forwardPorts = [
{
from = "host";
host.port = 13000;
guest.port = 3000;
host.port = 5000;
guest.port = 5000;
}
{
from = "host";
host.port = 14000;
guest.port = 4000;
host.port = 10000;
guest.port = 10000;
}
{
from = "host";
host.port = 15000;
guest.port = 15000;
}
];
};
@@ -44,7 +49,7 @@
services.archtika = {
enable = true;
package = localArchtikaPackage;
jwtSecret = "test-secret";
jwtSecret = "a42kVyAhTImYxZeebZkApoAZLmf0VtDA";
};
system.stateVersion = "24.05";