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";}]; - }; -}