Compare commits

...

2 commits

Author SHA1 Message Date
sid
01cddbba13 Merge pull request 'rss stuff back on rx4' (#51) from develop into master
All checks were successful
Deploy configs / deploy-configs (push) Successful in 24s
Reviewed-on: #51
2026-05-05 22:36:32 +02:00
sid
ed2f7e5773 rss stuff back on rx4
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 22s
Flake check / flake-check (pull_request) Successful in 24s
2026-05-05 22:35:46 +02:00
5 changed files with 15 additions and 8 deletions

View file

@ -18,6 +18,8 @@
./nginx.nix
./open-webui-oci.nix
./print-server.nix
./rss-bridge.nix
./rsshub-oci.nix
./vaultwarden.nix
# ./alditalk-extender.nix # FIXME

View file

@ -14,7 +14,7 @@
reverseProxy = {
enable = true;
subdomain = constants.services.rss-bridge.subdomain;
forceSSL = true;
forceSSL = false;
};
};
}

View file

@ -10,10 +10,5 @@
services.rsshub-oci = {
enable = true;
inherit (constants.services.rsshub-oci) port;
reverseProxy = {
enable = true;
subdomain = constants.services.rss-bridge.subdomain;
forceSSL = true;
};
};
}

View file

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

View file

@ -77,6 +77,18 @@ 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;
port = constants.services.rsshub-oci.port;
};
virtualHosts."${constants.services.vaultwarden.fqdn}" = {
useACMEHost = "sid-internal";
forceSSL = ssl;