diff --git a/constants.nix b/constants.nix index 3dc7ded..e38e39d 100644 --- a/constants.nix +++ b/constants.nix @@ -21,10 +21,6 @@ rec { fqdn = "git." + domain; port = 3456; }; - jirafeau = rec { - subdomain = "f"; - fqdn = subdomain + "." + domain; - }; miniflux = { fqdn = "rss." + domain; port = 8085; diff --git a/flake.lock b/flake.lock index b7c54b9..e00e855 100644 --- a/flake.lock +++ b/flake.lock @@ -2519,11 +2519,11 @@ "stylix": "stylix_3" }, "locked": { - "lastModified": 1777750263, - "narHash": "sha256-3c085GHJBwd/t9bA7V0vGzh7PQDOeGHn3TgtURs2K7k=", + "lastModified": 1777741303, + "narHash": "sha256-zSzzDpJdKhzQbShaAJ+J97kllAQ4nttFr4VMoln2LJo=", "ref": "release-25.11", - "rev": "a0a39253f4cea70bf7e22da5e5644df9707dfb95", - "revCount": 46, + "rev": "e801c318a76d147e167ec97342d4d86b302681b8", + "revCount": 35, "type": "git", "url": "https://git.sid.ovh/sid/synix.git" }, diff --git a/hosts/rx4/services/default.nix b/hosts/rx4/services/default.nix index 385a957..94cc10c 100644 --- a/hosts/rx4/services/default.nix +++ b/hosts/rx4/services/default.nix @@ -12,7 +12,6 @@ outputs.nixosModules.tailscale ./forgejo.nix - ./jirafeau.nix ./miniflux.nix ./netdata.nix ./nginx.nix diff --git a/hosts/rx4/services/jirafeau.nix b/hosts/rx4/services/jirafeau.nix deleted file mode 100644 index 47195a9..0000000 --- a/hosts/rx4/services/jirafeau.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ - inputs, - constants, - pkgs, - ... -}: - -{ - imports = [ inputs.synix.nixosModules.jirafeau ]; - - services.jirafeau = { - enable = true; - package = pkgs.synix.jirafeau; - reverseProxy = { - enable = true; - subdomain = constants.services.jirafeau.subdomain; - forceSSL = false; - }; - }; -} diff --git a/hosts/sid/services/nginx.nix b/hosts/sid/services/nginx.nix index b266858..1b538ac 100644 --- a/hosts/sid/services/nginx.nix +++ b/hosts/sid/services/nginx.nix @@ -35,13 +35,6 @@ in address = constants.hosts.rx4.ip; port = constants.services.forgejo.port; }; - virtualHosts."${constants.services.jirafeau.fqdn}" = { - enableACME = ssl; - forceSSL = ssl; - locations."/" = { - proxyPass = "http://${constants.hosts.rx4.ip}"; - }; - }; virtualHosts."${constants.services.miniflux.fqdn}" = mkVirtualHost { inherit ssl; address = constants.hosts.rx4.ip;