Test cert-store with nextcloud

This commit is contained in:
Vili Sinervä 2025-01-20 22:30:30 +02:00
parent 485adefc8d
commit 5d07fa2fd4
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
3 changed files with 25 additions and 3 deletions

View file

@ -1,6 +1,6 @@
{ config, pkgs, ... }:
{
imports = [ ./acme-dns.nix ];
imports = [ ./cert-store-client.nix ];
networking.firewall.allowedTCPPorts = [
80
@ -35,8 +35,8 @@
virtualHosts.${config.services.nextcloud.hostName} = {
forceSSL = true;
kTLS = true;
enableACME = true;
acmeRoot = null;
sslCertificate = "/mnt/acme/fullchain.pem";
sslCertificateKey = "/mnt/acme/key.pem";
};
};
};