diff options
author | Franck Cuny <franck@fcuny.net> | 2022-04-13 14:17:00 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-04-13 14:17:00 -0700 |
commit | 9c467c91b7596d28bd7007017f9c1364dfb27278 (patch) | |
tree | 5049cfa4a13f3f54a038ecb371adef601d4cec52 /hosts | |
parent | grafana: correct domain name ... (diff) | |
download | world-9c467c91b7596d28bd7007017f9c1364dfb27278.tar.gz |
modules: make the vhost be configurable
Diffstat (limited to '')
-rw-r--r-- | hosts/tahoe/services.nix | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/hosts/tahoe/services.nix b/hosts/tahoe/services.nix index 453ce0f..6ad8456 100644 --- a/hosts/tahoe/services.nix +++ b/hosts/tahoe/services.nix @@ -8,9 +8,13 @@ in { }; navidrome = { enable = true; + vhostName = "music.fcuny.xyz"; musicFolder = "/data/fast/music"; }; - unifi = { enable = true; }; + unifi = { + enable = true; + vhostName = "unifi.fcuny.xyz"; + }; prometheus = { enable = true; }; grafana = { enable = true; @@ -21,9 +25,11 @@ in { stateDir = "/var/lib/gitea"; }; rclone = { enable = true; }; - traefik = { enable = false; }; nginx = { enable = true; }; - transmission = { enable = true; }; + transmission = { + enable = true; + vhostName = "bt.fcuny.xyz"; + }; metrics-exporter = { enable = true; }; backup = { enable = true; |