char/topaz-flake

git clone https://git.t4t.associates/char/topaz-flake

Charlotte Som9220c85

main
392 B16 linesraw
1{ ... }: {
2  services.nginx.virtualHosts = let goneHost = {
3    forceSSL = true;
4    enableACME = true;
5    locations."/" = {
6      return = "410 'Gone - the cerulea relay is no longer operational.'";
7      extraConfig = ''
8        charset utf-8;
9        default_type text/plain;
10      '';
11    };
12  }; in {
13    "relay.cerulea.blue" = goneHost;
14    "jetstream.cerulea.blue" = goneHost;
15  };
16}