1
0
Fork 0
mirror of https://github.com/archtechx/nix.git synced 2025-12-12 11:24:04 +00:00

Add catchall.nix

This commit is contained in:
Samuel Štancl 2025-08-28 17:59:49 +02:00
parent ecf65b125d
commit b091a51ec0
2 changed files with 14 additions and 0 deletions

7
catchall.nix Normal file
View file

@ -0,0 +1,7 @@
{
services.nginx.virtualHosts."catchall" = {
default = true;
locations."/".return = "444";
rejectSSL = true;
};
}