flakes/modules/services/banksia.nix

12 lines
283 B
Nix
Raw Normal View History

2026-03-15 19:41:44 +11:00
# TODO ^^
{ ... }: {
services.nginx.virtualHosts = {
"banksia.lava.moe" = {
useACMEHost = "lava.moe";
forceSSL = true;
2026-06-02 19:54:09 +10:00
locations."/".return = "302 https://lab.lava.moe/cilly/Banksia";
2026-03-15 19:41:44 +11:00
locations."/api".proxyPass = "http://localhost:8080/";
};
};
}