Add WCH Stories app service and load balancer
This commit is contained in:
parent
1479a2f1b2
commit
9948a78e29
|
@ -11,6 +11,7 @@
|
|||
./common
|
||||
./common/server
|
||||
./common/users/scott
|
||||
./services
|
||||
];
|
||||
|
||||
boot.loader = {
|
||||
|
|
6
services/default.nix
Normal file
6
services/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./load-balancer.nix
|
||||
./wch-app.nix
|
||||
];
|
||||
}
|
4
services/load-balancer.nix
Normal file
4
services/load-balancer.nix
Normal file
|
@ -0,0 +1,4 @@
|
|||
{pkgs, ...}: import ../common/services/load-balancer {
|
||||
pkgs = pkgs;
|
||||
dataset = null;
|
||||
}
|
10
services/wch-app.nix
Normal file
10
services/wch-app.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue