mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-12-27 11:02:33 +01:00
buskerud: Temporarily added ozai and ozai-webui
This commit is contained in:
committed by
Adrian Gunnar Lauterer
parent
71479d5ca0
commit
46159eec9a
@@ -4,6 +4,8 @@
|
||||
./hardware-configuration.nix
|
||||
../../base.nix
|
||||
../../misc/metrics-exporters.nix
|
||||
|
||||
./services/ozai.nix
|
||||
];
|
||||
|
||||
# buskerud does not support efi?
|
||||
|
||||
33
hosts/buskerud/services/ozai.nix
Normal file
33
hosts/buskerud/services/ozai.nix
Normal 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}";
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user