about summary refs log tree commit diff
path: root/hosts/common
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-06 11:41:52 -0800
committerFranck Cuny <franck@fcuny.net>2022-03-06 11:41:52 -0800
commita88a56688b5418f918ff4534c5fa20d861301051 (patch)
treeb6fc58c9f97929007ee46a0f32582613934875fe /hosts/common
parentnas: install transmission (diff)
downloadworld-a88a56688b5418f918ff4534c5fa20d861301051.tar.gz
traefik: add transmission (bt.fcuny.xyz)
Diffstat (limited to 'hosts/common')
-rw-r--r--hosts/common/server/traefik.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/hosts/common/server/traefik.nix b/hosts/common/server/traefik.nix
index f29db72..8765856 100644
--- a/hosts/common/server/traefik.nix
+++ b/hosts/common/server/traefik.nix
@@ -57,8 +57,10 @@ in {
     };
   };
 
-  services.traefik.dynamicConfigOptions =
-    mkMerge [ (mkServiceConfig "dash" "http://127.0.0.1:3000/") ];
+  services.traefik.dynamicConfigOptions = mkMerge [
+    (mkServiceConfig "dash" "http://127.0.0.1:3000/")
+    (mkServiceConfig "bt" "http://127.0.0.1:9091/")
+  ];
 
   systemd.services.traefik.environment.GCE_SERVICE_ACCOUNT_FILE =
     config.age.secrets.traefik_gcp_sa.path;