Activate https for cloud server

This commit is contained in:
thiloho
2023-08-05 18:22:28 +02:00
parent b99f92a7d0
commit 3e7d421798

View File

@@ -1,4 +1,4 @@
{ inputs, pkgs, ... }:
{ inputs, pkgs, config, ... }:
{
imports = [
@@ -48,6 +48,10 @@
forceSSL = true;
root = inputs.aurora-blog-template.packages.${pkgs.system}.default;
};
"cloud.thilohohlt.com" = {
enableACME = true;
forceSSL = true;
};
};
};
nextcloud = {
@@ -59,6 +63,7 @@
dbtype = "pgsql";
adminpassFile = "/var/run/nextcloud-pass.txt";
};
https = true;
};
};