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:
parent
7a41044210
commit
0a3af8906d
1 changed files with 14 additions and 0 deletions
|
@ -63,6 +63,7 @@
|
|||
};
|
||||
|
||||
extraOptions = {
|
||||
instanceid = "ocxlphb7fbju";
|
||||
redis = {
|
||||
host = "/run/redis/redis.sock";
|
||||
port = 0;
|
||||
|
@ -70,8 +71,21 @@
|
|||
password = "secret";
|
||||
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";
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue