add sentry and async_media support

This commit is contained in:
Charlotte 🦝 Delenk 2022-05-28 08:43:59 +01:00
parent b60768ee17
commit 42bca6e6a4
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
6 changed files with 8 additions and 2 deletions

View file

@ -56,6 +56,10 @@ let
asyncUploadExpirySecs = 120;
};
};
sentry = {
enable = true;
dsn = "https://18e36e6f16b5490c83364101717cddba@o253952.ingest.sentry.io/6449283";
};
});
in
{

View file

@ -11,6 +11,7 @@
address = "https://matrix.chir.rs";
domain = "chir.rs";
http_retry_count = 1000;
async_media = true;
};
appservice = {
max_body_size = 10;

View file

@ -7,7 +7,7 @@
address = "https://matrix.chir.rs";
domain = "chir.rs";
http_retry_count = 1000;
async_media = false;
async_media = true;
};
appservice = {
address = "http://localhost:29317";

View file

@ -10,6 +10,7 @@
homeserver = {
address = "https://matrix.chir.rs";
domain = "chir.rs";
async_media = true;
};
appservice = {
database = {

View file

@ -59,6 +59,7 @@
msc2716_enabled = true;
spaces_enabled = true;
};
sentry.dsn = "https://18e36e6f16b5490c83364101717cddba@o253952.ingest.sentry.io/6449283";
};
withJemalloc = true;
};

View file

@ -106,7 +106,6 @@ in
ProtectKernelTunables = true;
ProtectKernelModules = true;
ProtectControlGroups = true;
PrivateTmp = true;
WorkingDirectory = dataDir;
StateDirectory = baseNameOf dataDir;
UMask = 0117;