flakes/hosts/dandelion/nginx.nix

9 lines
218 B
Nix
Raw Normal View History

2026-06-19 08:01:17 +10:00
{ ... }: {
services.nginx.virtualHosts."muse.lava.moe" = {
useACMEHost = "lava.moe";
forceSSL = true;
locations."/".return = "404";
locations."/share/".proxyPass = "http://[fd0d:2::5:2]:4533";
};
}