1
0

profiles/common-webserver: Terminate http sessions for unknown vhosts immediately

This commit is contained in:
2025-12-03 21:13:19 +01:00
parent 4fb86e3e1e
commit 7cf15e05bd

View File

@@ -53,10 +53,8 @@ in {
default = true; default = true;
rejectSSL = true; rejectSSL = true;
locations."/" = { locations."/" = {
return = ''200 "Some piece of infrastructure\n"''; # Terminate connection without response
extraConfig = '' return = ''444'';
types { } default_type "text/plain; charset=utf-8";
'';
}; };
}; };
}; };