diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2021-11-26 14:53:56 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2021-11-26 14:53:56 +0100 |
| commit | a468ef741c176342179650e39abb5f28131122ae (patch) | |
| tree | 202c3bf495ebc861d5f7d8cb71b00af3df9d4f68 /test | |
| parent | 0b6558fbd828800621cd9e8918fb91f2602111ba (diff) | |
rename attrsets of virtualhosts for more concision
Diffstat (limited to 'test')
| -rw-r--r-- | test/vm.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/vm.nix b/test/vm.nix index ca4791a..390d02b 100644 --- a/test/vm.nix +++ b/test/vm.nix @@ -18,7 +18,7 @@ in { }; services.nginx.virtualHosts = { - "quentin.${config.networking.domain}" = { + quentin = { listen = lib.mkForce [{ addr = "0.0.0.0"; port = 8080; @@ -26,7 +26,7 @@ in { forceSSL = lib.mkForce false; enableACME = lib.mkForce false; }; - "searx.${config.networking.domain}" = { + searx = { listen = lib.mkForce [{ addr = "0.0.0.0"; port = 8081; @@ -34,7 +34,7 @@ in { forceSSL = lib.mkForce false; enableACME = lib.mkForce false; }; - "money.${config.networking.domain}" = { + money = { listen = lib.mkForce [{ addr = "0.0.0.0"; port = 8082; |
