7 lines
165 B
Nix
7 lines
165 B
Nix
{
|
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
|
services.nginx.enable = true;
|
|
services.nginx.virtualHosts."samchance.xyz" = {
|
|
root = "/srv/hello/";
|
|
};
|
|
}
|