Compare commits

..

6 commits

Author SHA1 Message Date
sid
8523dc2da2 Merge pull request 'use acme host sid-internal for vaultwarden' (#34) from develop into master
Some checks failed
Deploy configs / deploy-configs (push) Failing after 30s
Reviewed-on: #34
2026-04-19 03:22:57 +02:00
sid
b2c1a0fc58 security.acme.certs.<name>.mode does not exist
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 20s
Flake check / flake-check (pull_request) Successful in 19s
2026-04-19 03:22:23 +02:00
sid
2f28178cb3 fix acme perms
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 8s
Flake check / flake-check (pull_request) Failing after 6s
2026-04-19 03:20:25 +02:00
sid
6d39d2a339 remove enableACME
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 8s
Flake check / flake-check (pull_request) Failing after 7s
2026-04-19 03:18:39 +02:00
sid
d7e5bca275 toString
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 8s
Flake check / flake-check (pull_request) Failing after 7s
2026-04-19 03:16:04 +02:00
sid
84ada43b1f use acme host sid-internal for vaultwarden
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 7s
Flake check / flake-check (pull_request) Failing after 6s
2026-04-19 03:12:44 +02:00
2 changed files with 7 additions and 4 deletions

View file

@ -55,10 +55,12 @@ in
address = constants.hosts.rx4.ip;
port = constants.services.rsshub-oci.port;
};
virtualHosts."${constants.services.vaultwarden.fqdn}" = mkVirtualHost {
inherit ssl;
address = constants.hosts.rx4.ip;
port = constants.services.vaultwarden.port;
virtualHosts."${constants.services.vaultwarden.fqdn}" = {
useACMEHost = "sid-internal";
forceSSL = ssl;
locations."/" = {
proxyPass = "http://${constants.hosts.rx4.ip}:${toString constants.services.vaultwarden.port}";
};
};
virtualHosts."${constants.services.webdav.fqdn}" = mkVirtualHost {
inherit ssl;

View file

@ -75,6 +75,7 @@ in
certs."sid-internal" = {
domain = "*.${constants.intranet}";
server = "https://${constants.ca-fqdn}:${toString cfg.port}/acme/acme/directory";
group = "nginx";
};
};