From e3d05b8177e95bae7b09d19f708d55eb04c9164e Mon Sep 17 00:00:00 2001 From: sid Date: Tue, 5 May 2026 23:26:01 +0200 Subject: [PATCH 1/2] update synix input --- flake.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flake.lock b/flake.lock index 9aced97..da7918e 100644 --- a/flake.lock +++ b/flake.lock @@ -5199,11 +5199,11 @@ "stylix": "stylix_6" }, "locked": { - "lastModified": 1777909424, - "narHash": "sha256-rGvpa9MD+N+ZY6C6unfjlyyJi+etI5E9I3ucUSnAmfQ=", + "lastModified": 1778016348, + "narHash": "sha256-C8PtC95r1KJync8qDEroIont1VT8tiwsjonYjwGLhbY=", "ref": "release-25.11", - "rev": "4683cb1136b22f059a242389a96e47ff061f3d6b", - "revCount": 52, + "rev": "8ad8b1f633f6c3875032a0ead0e87255dff4ab3c", + "revCount": 57, "type": "git", "url": "https://git.sid.ovh/sid/synix.git" }, From a5848b44b8fb3a05c8f8ce2d6e4362f8d7a46d21 Mon Sep 17 00:00:00 2001 From: sid Date: Tue, 5 May 2026 23:28:32 +0200 Subject: [PATCH 2/2] move rss-bridge to host sid --- hosts/rx4/services/default.nix | 1 - hosts/sid/services/default.nix | 1 + hosts/sid/services/nginx.nix | 7 ------- hosts/{rx4 => sid}/services/rss-bridge.nix | 2 +- 4 files changed, 2 insertions(+), 9 deletions(-) rename hosts/{rx4 => sid}/services/rss-bridge.nix (91%) diff --git a/hosts/rx4/services/default.nix b/hosts/rx4/services/default.nix index 385a957..a61584e 100644 --- a/hosts/rx4/services/default.nix +++ b/hosts/rx4/services/default.nix @@ -18,7 +18,6 @@ ./nginx.nix ./open-webui-oci.nix ./print-server.nix - ./rss-bridge.nix ./rsshub-oci.nix ./vaultwarden.nix diff --git a/hosts/sid/services/default.nix b/hosts/sid/services/default.nix index c753168..c1079d8 100644 --- a/hosts/sid/services/default.nix +++ b/hosts/sid/services/default.nix @@ -17,6 +17,7 @@ ./netdata.nix ./nginx.nix ./radicale.nix + ./rss-bridge.nix ./step-ca.nix ]; } diff --git a/hosts/sid/services/nginx.nix b/hosts/sid/services/nginx.nix index d1cd949..d1e6227 100644 --- a/hosts/sid/services/nginx.nix +++ b/hosts/sid/services/nginx.nix @@ -77,13 +77,6 @@ in error_log /var/log/nginx/open-webui-error.log debug; ''; }; - virtualHosts."${constants.services.rss-bridge.fqdn}" = { - enableACME = ssl; - forceSSL = ssl; - locations."/" = { - proxyPass = "http://${constants.hosts.rx4.ip}"; - }; - }; virtualHosts."${constants.services.rsshub-oci.fqdn}" = mkVirtualHost { inherit ssl; address = constants.hosts.rx4.ip; diff --git a/hosts/rx4/services/rss-bridge.nix b/hosts/sid/services/rss-bridge.nix similarity index 91% rename from hosts/rx4/services/rss-bridge.nix rename to hosts/sid/services/rss-bridge.nix index d3bd6a3..addd2fe 100644 --- a/hosts/rx4/services/rss-bridge.nix +++ b/hosts/sid/services/rss-bridge.nix @@ -8,7 +8,7 @@ reverseProxy = { enable = true; subdomain = constants.services.rss-bridge.subdomain; - forceSSL = false; + forceSSL = true; }; }; }