Compare commits

..

No commits in common. "01cddbba133a7c2d608fbf8b644212e8f4f84079" and "b11dae39e444f7e154df7c916a4b5df1b3390961" have entirely different histories.

5 changed files with 8 additions and 15 deletions

View file

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

View file

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

View file

@ -77,18 +77,6 @@ in
error_log /var/log/nginx/open-webui-error.log debug; 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}" = { virtualHosts."${constants.services.vaultwarden.fqdn}" = {
useACMEHost = "sid-internal"; useACMEHost = "sid-internal";
forceSSL = ssl; forceSSL = ssl;

View file

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

View file

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