flakes/hosts/dandelion/nginx.nix
Cilly Leang e1c02d7a91
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
containers/emerald: move to alyssum
2026-06-19 08:01:17 +10:00

8 lines
218 B
Nix

{ ... }: {
services.nginx.virtualHosts."muse.lava.moe" = {
useACMEHost = "lava.moe";
forceSSL = true;
locations."/".return = "404";
locations."/share/".proxyPass = "http://[fd0d:2::5:2]:4533";
};
}