nextcloud: add config options from previous instance

this includes mail, the instanceid, and the data directory.

ldap is excluded for now so we can first test how well this works at all.
This commit is contained in:
stuebinm 2021-03-25 21:04:11 +01:00 committed by schweby
parent 7a41044210
commit 0a3af8906d
No known key found for this signature in database
GPG key ID: B880491D046E2F87

View file

@ -63,6 +63,7 @@
}; };
extraOptions = { extraOptions = {
instanceid = "ocxlphb7fbju";
redis = { redis = {
host = "/run/redis/redis.sock"; host = "/run/redis/redis.sock";
port = 0; port = 0;
@ -70,8 +71,21 @@
password = "secret"; password = "secret";
timeout = 1.5; timeout = 1.5;
}; };
datadirectory = "/mnt/ncdata";
mail_smtpmode = "smtp";
mail_smtpsecure = "ssl";
mail_sendmailmode = "smtp";
mail_from_address = "noreply";
mail_domain = "infra4future.de";
mail_smtpauthtype = "PLAIN";
mail_smtpauth = 1;
mail_smtphost = "mail.hacc.space";
mail_smtpport = 465;
mail_smtpname = "noreply@infra4future.de";
loglevel = 0;
}; };
# passwordsalt, secret, and mail_smtppassword go in here
secretFile = "/secret/secrets.json"; secretFile = "/secret/secrets.json";
}; };