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
All checks were successful
Deploy configs / deploy-configs (push) Successful in 24s
Reviewed-on: #51
This commit is contained in:
commit
01cddbba13
5 changed files with 15 additions and 8 deletions
|
|
@ -18,6 +18,8 @@
|
||||||
./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
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
reverseProxy = {
|
reverseProxy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
subdomain = constants.services.rss-bridge.subdomain;
|
subdomain = constants.services.rss-bridge.subdomain;
|
||||||
forceSSL = true;
|
forceSSL = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
@ -10,10 +10,5 @@
|
||||||
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;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
@ -17,8 +17,6 @@
|
||||||
./netdata.nix
|
./netdata.nix
|
||||||
./nginx.nix
|
./nginx.nix
|
||||||
./radicale.nix
|
./radicale.nix
|
||||||
./rss-bridge.nix
|
|
||||||
./rsshub-oci.nix
|
|
||||||
./step-ca.nix
|
./step-ca.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -77,6 +77,18 @@ 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;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue