Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
8 lines
218 B
Nix
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";
|
|
};
|
|
}
|