buskerud: Temporarily added ozai and ozai-webui

This commit is contained in:
2024-06-16 18:11:01 +02:00
committed by Adrian Gunnar Lauterer
parent 71479d5ca0
commit 46159eec9a
3 changed files with 48 additions and 2 deletions

View File

@@ -4,6 +4,8 @@
./hardware-configuration.nix
../../base.nix
../../misc/metrics-exporters.nix
./services/ozai.nix
];
# buskerud does not support efi?

View File

@@ -0,0 +1,33 @@
{ config, pkgs, lib, ... }:
let
domain = "buskerud.pvv.ntnu.no";
in
{
services.ozai = {
enable = true;
host = "0.0.0.0";
port = 8000;
};
services.ozai-webui = {
enable = true;
port = 8080;
host = "0.0.0.0";
};
services.nginx.virtualHosts."${domain}" = {
forceSSL = true;
enableACME = true;
locations."/azul/" = {
proxyWebsockets = true;
proxyPass = "http://${config.services.ozai-webui.host}:${config.services.ozai-webui.port}";
};
locations."/ozai/" = {
proxyWebsockets = true;
proxyPass = "http://${config.services.ozai.host}:${config.services.ozai.port}";
};
};
}