nixos/hosts/common/optional/nginx/semitamaps.nix

8 lines
165 B
Nix
Raw Normal View History

{
networking.firewall.allowedTCPPorts = [ 80 ];
services.nginx.enable = true;
services.nginx.virtualHosts."samchance.xyz" = {
root = "/srv/hello/";
};
}