flakes/modules/services/banksia.nix

12 lines
285 B
Nix
Raw Permalink Normal View History

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