move rss-bridge to host sid
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 23s
Flake check / flake-check (pull_request) Successful in 21s

This commit is contained in:
sid 2026-05-05 23:28:32 +02:00
parent e3d05b8177
commit a5848b44b8
4 changed files with 2 additions and 9 deletions

View file

@ -17,6 +17,7 @@
./netdata.nix
./nginx.nix
./radicale.nix
./rss-bridge.nix
./step-ca.nix
];
}

View file

@ -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;

View file

@ -0,0 +1,14 @@
{ inputs, constants, ... }:
{
imports = [ inputs.synix.nixosModules.rss-bridge ];
services.rss-bridge = {
enable = true;
reverseProxy = {
enable = true;
subdomain = constants.services.rss-bridge.subdomain;
forceSSL = true;
};
};
}