add comments

This commit is contained in:
Lyn Fugmann 2022-11-18 17:40:12 +01:00
parent 67a76a0b2e
commit 970f1180cc
Signed by: fugi
GPG key ID: 4472A20091BFA792

View file

@ -30,11 +30,11 @@ in
nextcloud = { nextcloud = {
enable = true; enable = true;
package = pkgs.nextcloud25; package = pkgs.nextcloud25; # Use current latest nextcloud package
hostName = "${domain}"; hostName = "${domain}";
https = true; https = true; # Use https for all urls
phpExtraExtensions = all: [ phpExtraExtensions = all: [
all.ldap all.ldap # Enable ldap php extension
]; ];
config = { config = {
dbtype = "pgsql"; dbtype = "pgsql";
@ -47,6 +47,7 @@ in
}; };
}; };
# Enable ACME and force SSL
nginx = { nginx = {
recommendedProxySettings = true; recommendedProxySettings = true;
virtualHosts = { virtualHosts = {