13 lines
173 B
Nix
13 lines
173 B
Nix
{ ... }:
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
virtualHosts = {
|
|
"ppc" = {
|
|
locations."/" = {
|
|
root = ./html;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|