flakes/modules/services/banksia.nix
Cilly Leang 91abcbed19
Some checks failed
CI / Build linux-lava for x86_64-linux (push) Has been cancelled
services/banksia: redirect to lab
2026-06-02 19:54:09 +10:00

11 lines
283 B
Nix

# TODO ^^
{ ... }: {
services.nginx.virtualHosts = {
"banksia.lava.moe" = {
useACMEHost = "lava.moe";
forceSSL = true;
locations."/".return = "302 https://lab.lava.moe/cilly/Banksia";
locations."/api".proxyPass = "http://localhost:8080/";
};
};
}