nginx: Make VM testing easier by binding virtualHosts to localhost

This commit is contained in:
Tristan Daniël Maat 2021-05-17 00:00:34 +01:00
parent b8bf3bd3a2
commit 5f8899d542
Signed by: tlater
GPG key ID: 49670FD774E43268
3 changed files with 18 additions and 5 deletions

View file

@ -1,5 +1,12 @@
{ ... }:
{ lib, ... }:
with lib;
{
imports = [ ./virtualisation/pods.nix ];
options.services.nginx.domain = mkOption {
type = types.str;
description = "The base domain name to append to virtual domain names";
};
}