Compare commits
2 commits
b11dae39e4
...
01cddbba13
| Author | SHA1 | Date | |
|---|---|---|---|
| 01cddbba13 | |||
| ed2f7e5773 |
5 changed files with 15 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
reverseProxy = {
|
||||
enable = true;
|
||||
subdomain = constants.services.rss-bridge.subdomain;
|
||||
forceSSL = true;
|
||||
forceSSL = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -17,8 +17,6 @@
|
|||
./netdata.nix
|
||||
./nginx.nix
|
||||
./radicale.nix
|
||||
./rss-bridge.nix
|
||||
./rsshub-oci.nix
|
||||
./step-ca.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue