This commit is contained in:
Hadi
2024-06-20 00:06:06 +02:00
parent 265651c931
commit eec2b56fcd
3 changed files with 18 additions and 16 deletions

View File

@@ -10,6 +10,21 @@
# test
services.nginx.virtualHosts."anotherhadi.com" = {
serverAliases = [ "www.anotherhadi.com" ];
root = "/var/www/default";
root = "/etc/www/home";
};
environment.etc = {
"www/home" = {
text = ''
<html>
<head>
<title>Another Hadi</title>
</head>
<body>
<h1>Another Hadi</h1>
</body>
</html>
'';
};
};
}