add sentry and async_media support
This commit is contained in:
parent
b60768ee17
commit
42bca6e6a4
6 changed files with 8 additions and 2 deletions
|
@ -56,6 +56,10 @@ let
|
|||
asyncUploadExpirySecs = 120;
|
||||
};
|
||||
};
|
||||
sentry = {
|
||||
enable = true;
|
||||
dsn = "https://18e36e6f16b5490c83364101717cddba@o253952.ingest.sentry.io/6449283";
|
||||
};
|
||||
});
|
||||
in
|
||||
{
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
address = "https://matrix.chir.rs";
|
||||
domain = "chir.rs";
|
||||
http_retry_count = 1000;
|
||||
async_media = true;
|
||||
};
|
||||
appservice = {
|
||||
max_body_size = 10;
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
homeserver = {
|
||||
address = "https://matrix.chir.rs";
|
||||
domain = "chir.rs";
|
||||
async_media = true;
|
||||
};
|
||||
appservice = {
|
||||
database = {
|
||||
|
|
|
@ -59,6 +59,7 @@
|
|||
msc2716_enabled = true;
|
||||
spaces_enabled = true;
|
||||
};
|
||||
sentry.dsn = "https://18e36e6f16b5490c83364101717cddba@o253952.ingest.sentry.io/6449283";
|
||||
};
|
||||
withJemalloc = true;
|
||||
};
|
||||
|
|
|
@ -106,7 +106,6 @@ in
|
|||
ProtectKernelTunables = true;
|
||||
ProtectKernelModules = true;
|
||||
ProtectControlGroups = true;
|
||||
PrivateTmp = true;
|
||||
WorkingDirectory = dataDir;
|
||||
StateDirectory = baseNameOf dataDir;
|
||||
UMask = 0117;
|
||||
|
|
Loading…
Reference in a new issue