Added Cyper Node 1 configuration

This commit is contained in:
2026-04-10 20:09:19 +02:00
parent 4fb35ddb5e
commit 90c1396ea5
5 changed files with 111 additions and 8 deletions

14
nixos/server/default.nix Normal file
View File

@@ -0,0 +1,14 @@
{ ... }:
{
services.nginx = {
enable = true;
virtualHosts.localhost = {
locations."/" = {
return = "200 '<html><body>It works</body></html>'";
extraConfig = ''
default_type text/html;
'';
};
};
};
}