Some checks failed
CI / Build linux-lava for x86_64-linux (push) Has been cancelled
11 lines
283 B
Nix
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/";
|
|
};
|
|
};
|
|
}
|