mirror of
https://github.com/archtechx/nix.git
synced 2025-12-12 03:24:02 +00:00
7 lines
130 B
Nix
7 lines
130 B
Nix
{
|
|
services.nginx.virtualHosts."catchall" = {
|
|
default = true;
|
|
locations."/".return = "444";
|
|
rejectSSL = true;
|
|
};
|
|
}
|