From 36917117e13cde1943d22c4ee996091b5d110c8f Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 26 May 2023 09:11:36 +0100 Subject: [PATCH] Delete syncthing traefik config --- services/traefik/syncthing.nix | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 services/traefik/syncthing.nix diff --git a/services/traefik/syncthing.nix b/services/traefik/syncthing.nix deleted file mode 100644 index 1d91ebfa..00000000 --- a/services/traefik/syncthing.nix +++ /dev/null @@ -1,13 +0,0 @@ -{...}: { - imports = [./default.nix]; - services.traefik.dynamicConfigOptions.http = { - routers.syncthing = { - rule = "Host(`syncthing.xenia.me.uk`)"; - entryPoints = ["http" "https"]; - service = "syncthing-webinterface"; - middlewares = ["auth"]; - tls = {certResolver = "default";}; - }; - services.syncthing-webinterface.loadBalancer.servers = [{url = "http://localhost:8384";}]; - }; -}