nixos/hosts/modules/server/www/default.nix
2024-06-20 01:31:30 +02:00

15 lines
416 B
Nix

{
imports = [ ./home.anotherhadi.com ];
services.nginx.virtualHosts = {
"anotherhadi.com" = {
# serverAliases = [ "www.anotherhadi.com" ];
root = "/etc/www/anotherhadi.com";
};
"home.anotherhadi.com" = { root = "/etc/www/home.anotherhadi.com"; };
"www.anotherhadi.com" = { root = "/var/www/test"; };
};
environment.etc."www/anotherhadi.com" = { source = ./anotherhadi.com; };
}