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