Add WCH Stories app service and load balancer

This commit is contained in:
D. Scott Boggs 2024-01-30 14:29:55 -05:00
parent 1479a2f1b2
commit 9948a78e29
4 changed files with 21 additions and 0 deletions

View file

@ -11,6 +11,7 @@
./common
./common/server
./common/users/scott
./services
];
boot.loader = {

6
services/default.nix Normal file
View file

@ -0,0 +1,6 @@
{...}: {
imports = [
./load-balancer.nix
./wch-app.nix
];
}

View file

@ -0,0 +1,4 @@
{pkgs, ...}: import ../common/services/load-balancer {
pkgs = pkgs;
dataset = null;
}

10
services/wch-app.nix Normal file
View file

@ -0,0 +1,10 @@
{pkgs, ...}: import ../common/services/wch-app.nix {
pkgs = pkgs;
ref = "feature/client-auth";
rev = "1d43ffd995989eda217612daed5c180a68070352";
baseUrl = "wch-otd-test.techwork.zone";
mail = {
host = "in-v3.mailjet.com";
from = "wch-otd@tams.tech";
};
}