1
0
Fork 0

mastodon: enable elasticsearch

This commit is contained in:
Daniel Kempkens 2022-12-23 17:08:24 +01:00
parent 58720ff79f
commit 6a3c0ff0c0
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 7 additions and 1 deletions

Binary file not shown.

View file

@ -50,7 +50,10 @@ in
port = 6379; port = 6379;
}; };
elasticsearch.host = null; elasticsearch = {
host = "10.99.99.3";
port = 9200;
};
smtp = { smtp = {
createLocally = false; createLocally = false;
@ -72,6 +75,9 @@ in
extraConfig = { extraConfig = {
WEB_DOMAIN = web-domain; WEB_DOMAIN = web-domain;
ES_USER = secret.mastodon.elasticsearch.user;
ES_PASS = secret.mastodon.elasticsearch.password;
}; };
}; };